javascript - ColorField for ExtJS 4.0 -


do know colorfield implementation extjs 4.x?

i try create own (looking datefield source code) picker background transparent , can't fix :(

enter image description here

this how create color picker:

ext.create('ext.picker.color', {     pickerfield: me,     ownerct: me.ownerct,     renderto: document.body,     floating: true,     hidden: true,     focusonshow: true,     listeners: {         scope: me,         select: me.onselect     },     keynavconfig: {         esc: function() {             me.collapse();         }     } 

p.s. ask here, because on sencha forum never (even single) answer

why don't try adding style: {backgroundcolor: "#ddd"} picker's config?


Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

php - How can I edit my code to echo the data of child's element where my search term was found in, in XMLReader? -