Hi!
I have a FormPanel that I want to define frame as false. ut I want to keep the background color equal to frame true. I didn't find out how to achieve this. Can someone help me please.
Thank you
Hi!
I have a FormPanel that I want to define frame as false. ut I want to keep the background color equal to frame true. I didn't find out how to achieve this. Can someone help me please.
Thank you
You can use :
Code:bodyStyle : { backgroundColor : '#dfe8f6' }
Hi Fabio,
Thank you for replying.
But that solves part of the problem, because if I change the theme, the color of that formpanel will still be the default blue.
I need something more generic...
ok... you can add an aditional css, like:
Code:bodyCssClass : 'x-panel-mc'
Thank you fabio!
That's the kind of thing I was looking for, but it doesn't work. The form remains white.
Hi!
I used baseCls : 'x-panel-mc' instead of bodyCssClass and it works.
Thank you.