A disabled textbox will disable all the icon clicking handlers. To enable the icon clicking, you have to get the icon and bind events by yourself.
$('#tt').textbox({
disabled:true,
icons:[{
iconCls:'icon-ok',
handler:function(){
//...
}
}]
}).textbox('getIcon',0).bind('click',function(){
console.log('click icon')
})