Problem in get data from current row when click on delete button. I want to get data from hidden field passed from codeigniter controller and get that hidden field data when click on delete button.
{name:'PL_DELETE', index:'PL_DELETE', hidden:true}
function beforeDeleteCallback(e)
{
// i want to use PL_DELETE field value here on click delete icon.
}
PL_DELETE column contain active / inactive value only.
if value is inactive than we can delete this row otherwise return false.
Thank U in Advance...... :)