Hi there,
I used DHTMLXGrid with Dataprocessor. I am going to set enablePartialDataSend=0 for all insert actions and enablePartialDataSend=1 for Edit actions. How do I do that?
Thanks
Hi there,
I used DHTMLXGrid with Dataprocessor. I am going to set enablePartialDataSend=0 for all insert actions and enablePartialDataSend=1 for Edit actions. How do I do that?
Thanks
You can use onBeforeUpdate event of dataprocessor, it will receive both - type of operation ( inserted, updated ) and the data object that will be sent to the server. In code of event handler you can modify the data object ( delete fields that you need not at server side )
Please beware that this feature will not work with Connectors, you will need to use a custom servers side code.