Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Couetbis on Jan 30, 2009 02:41
open dhtmlx forum
Dataprocessor actions on dhtmlxGrid

Hello,
I would like to know if I can filter actions with dataprocessor. For example, I want allow addition row on grid but not modifications. When data are sending, is it possible to filter this ?
Or I must write a look on all rows and test status ? Currently I use sendData(), with no rowId in parameter.

Thanks in advance

Answer posted by Support on Jan 30, 2009 05:16
DataProcessor can't be used in such mode, but if you need to prevent data modification , why not switch whole grid to readonly state ( grid.setEditable(false) ) or just ignore rows with unwanted status in server side code?