addScriptDeclaration ('jQuery(document).ready(function(){
jQuery("#' . $this->id . '_picker").ColorPicker({
color: "' . $this->value . '",
onShow: function (colpkr) {
jQuery(colpkr).fadeIn(500);
return false;
},
onHide: function (colpkr) {
jQuery(colpkr).fadeOut(500);
return false;
},
onChange: function (hsb, hex, rgb) {
jQuery("#' . $this->id . '_picker div").css("backgroundColor", "#" + hex);
jQuery("#' . $this->id . '_picker").prev().val("#" + hex);
}
});
});'
);
return '';
}
}