Categories | Question details Back To List | ||
Grid Hi, Is there a way to identify the before data-processor event?This is required so that i can change the date parameter format Answer posted by Alex (support) on Nov 12, 2009 06:31 If grid changes are sent on sendData() call, you can execute any other before this method: dp.setUpdateMode("off"); function saveChanges(){ /*some code here*/ dp.sendData(); } |