it seems very straight forward, but after a lot of tries and online searching, still no luck with it.
environment: ExtJS 3.4
here is a jsfiddle I am working on: http://jsfiddle.net/v4ZzT/8/
new Ext.TabPanel({
renderTo: 'tab-with-chkbox',
activeTab: 0,
items:[
{
title: '<input type="checkbox"> Disabled?</input>',
html: 'Sample panel'
}
]
});
but that checkbox doesn't respond to click.
also found this link on sencha forum: http://www.sencha.com/forum/showthread.php?114794-Checkbox-in-tab-header it recommends changing iconCls. but I couldn't find a way to detect if this icon is clicked or not.