-
10 Aug 2012 7:12 AM #1
Answered: RadioGroup and form anchor label not playing nice in Chrome
Answered: RadioGroup and form anchor label not playing nice in Chrome
In the top browsers, the form fields have no anchor set (default). In the bottom they are anchored 100%.
Also, why is the radiogroup label not using the specified default width of 160px like the textfields?
Ext JS is WebKit safe?
alignment.jpg
-
Best Answer Posted by dr-dan
Turns out
overwrites the sencha one (there's a first!), so updating to:Code:labelCls
does the trickCode:labelCls: 'x-form-item-label x-form-item-label-left c-b fs-110 fw-600 ff-alt'
id only anchored the label changing that to, sorted that one outCode:defaults: {anchor: '100%'}
-
10 Aug 2012 7:48 AM #2
Turns out
overwrites the sencha one (there's a first!), so updating to:Code:labelCls
does the trickCode:labelCls: 'x-form-item-label x-form-item-label-left c-b fs-110 fw-600 ff-alt'
id only anchored the label changing that to, sorted that one outCode:defaults: {anchor: '100%'}


Reply With Quote