Hi
Could someone tell me the preferred way of getting a reference a checkbox if its in a toolbar in an EditorGridPanel? I simply would like to call the getValue() on it so I can do stuff with it.
My EditorGridPanel is built similar to the one below (plus a few more config properties):
var grid = new Ext.grid.EditorGridPanel({
tbar: new Ext.Toolbar({
width: 200,
height: 30,
items: [
{
xtype: 'checkbox',
name: 'field1',
boxLabel: 'Order aktiverad'
}
]
})
});
Thanks!