I have a panel with a checkbox inside it. I am trying to figure out how to check if the checkbox is selected or not using an external function. Can someone please assist me with this?
this.currentManagerPanel = new Ext.Panel({
border: false,
width: 550,
layout: 'fit',
items: [{
xtype: 'checkbox',
name: 'isNewEmployee',
height: 20,
boxLabel: 'Is New Employee',
inputValue: ''
}]
});