I'm using a radiogroup and would like to change the font size of the boxLabel for the RadioGroup items. Tried the cls property but no luck… Any ideas?
Code below:
{
xtype: 'radiogroup',
fieldLabel: 'Number Of Users',
allowBlank: false,
cls: 'x-test-style',
width: 250,
items: [
{ boxLabel: '1-10', name: 'num-users', inputValue: 1 } ,
{ boxLabel: '10+', name: 'num-users', inputValue: 2 },
{ boxLabel: '50+', name: 'num-users', inputValue: 3 },
{ boxLabel: '100+', name: 'num-users', inputValue: 4 },
{ boxLabel: '1000+', name: 'num-users', inputValue: 5 }
]
},