Hi
I have the following set up for grid data processor…
myDataProcessor = new dataProcessor(“xyz.jsp”);
myDataProcessor.enableDataNames(true);
myDataProcessor.setUpdateMode(“off”);
myDataProcessor.setTransactionMode(“GET”);
myDataProcessor.init(grid);
myDataProcessor.enableDebug(false);
basically I’m updating/inserting the values all at once, for that I’m using… myDataProcessor.sendData();
on clicking the button
I have a form that contains dhtmlx grid and other fields like textbox etc.
So now my question is, I want to send textbox elements along with the grid updates to processing page(xyz.jsp) at once by appending these parameters to the data processor url. Is it possible? (or) any alternative to achieve this?
Thanks