Hi,
I'm trying to access ui.rowData in a column editor, and this property doesn't seem to be defined.
{title:"ID", width:150, dataType:"string",editable: true, dataIndx:"ID",
editor:{
type:'textbox',
getData: function (ui)
{
if (ui.rowData != null) // it's always null
{
var val = 1;
}
}
}}
I'm using v 2.2.0. Is it a known issue or am I doing something wrong?