Do you know any ColorField implementation for ExtJS 4.x?

I try to create my own (looking DateField source code) but the picker background is transparent and I can't fix it :(

enter image description here

This is how I 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. I ask here, because on Sencha Forum I never get an (even a single) answer

link|improve this question

79% accept rate
1  
+1 for ###I ask here, because on Sencha Forum I never get a (even a single) answer### – Molecular Man Jul 21 '11 at 8:45
feedback

1 Answer

up vote 3 down vote accepted

Why don't you try adding something like style: {backgroundColor: "#ddd"} into your picker's config?

link|improve this answer
I tried but this is the result: sencha.com.s3.amazonaws.com/forum/ColorField2.png – ju. Jul 21 '11 at 9:11
here is fiddle where you can see that using style: {backgroundColor: "#fff"} is making picker non-transparent – Molecular Man Jul 21 '11 at 9:11
@ju, try using #fff color – Molecular Man Jul 21 '11 at 9:12
This website is incredible :) It will be better if it also have a border. The perfect looking is this one docs.sencha.com/ext-js/4-0/#/api/Ext.menu.ColorPicker – ju. Jul 21 '11 at 9:16
@ju, I haven't come up with something better than this – Molecular Man Jul 21 '11 at 10:45
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.