I use setColProp
function to set formatter property:
existingGrid.setColProp('SelectAction', {
formatter: function() {
return "<span class='ui-icon ui-icon-plus' style='display:inline-block' title='Add item'></span>";
}
});
but debugger shows that formatter is added as function of length 0? Wht does this happen?