Hello to all,
displayActionIcon function from xTensionFunctions library does not work with IE.
this is the code.
Ext.namespace ('xfn.functions');
xfn.functions.displayActionIcon = function(iconName, actionButtonId, tooltip) {
return '
';
}
xfn.functions.clickActionButton = function(actionButtonId) {
Ext.ComponentQuery.query('button[xcpId="' + actionButtonId +'"]')[0].getEl().dom.click();
return false;
}
This line of code cannot be executed in IE: Ext.ComponentQuery.query('button[xcpId="' + actionButtonId +'"]')[0].getEl().dom.click();
Does anyone have update of this function which works in IE.