I created one panel. I added one checkbox in that panel. I need to check whether that checkbox selected or not from outside function. Please any one help me....
this.currentManagerPanel = new Ext.Panel({
border: false,
width: 550,
layout: 'fit',
items: [{
xtype: 'checkbox',
name: 'isNewEmployee',
height: 20,
boxLabel: 'Is New Employee',
inputValue: ''
}]
});
using Ext.getCmp("isNewEmployee").checked;