Get KoolPHP UI with 30% OFF!

how to get updated row data after edit?.

Abraham
hi there i have been playing arround with the OnRowConfirmEdit..
<?php
         $grid->ClientSettings->ClientEvents["OnRowConfirmEdit"] = "Handle_OnRowConfirmEdit";
?>
<script>
	function Handle_OnRowConfirmEdit(sender,args)
	{
		var _row = args["Row"];
		var _data = objToString(_row.getDataItem());
		log_edit(_data,document.title);
		return true; // Approve action
	}
</script>

te row is edited but data stored in _data is not the updated but the previous.
I need to get the edited info to make a simple user activity log. who edited, who deleted, who added...
thanks for you support.
Posted Sep 29, 2015 , edited Sep 29, 2015 Kool
Abraham
Any Sugestions ??
Posted Oct 13, 2015 Kool
Peter
We have tested and the handle function works fine returning the updated data. Could you please check again.
Posted Oct 14, 2015 Kool
Abraham
LOL its working now.. dont know what happend.. :S
Posted Nov 13, 2015 Kool