Categories | Question details Back To List | ||
Dataprocessor Hi, i'm trying to use dataprocessor and i use your example for jsp. In jsp can i call the value of cells by the following codes: ... columns[0]=(String) request.getParameter("c0"); columns[1]=(String) request.getParameter("c1"); columns[2]=(String) request.getParameter("c2"); ... but how can i change the value of only one cell by edit operations. Can i use manual row updating with: grid.cells(id,ind).setValue(new_one) dp.setUpdated(id,true); but how can i save new value in jsp? Thanks in advance! Answer posted by Support on Oct 10, 2008 05:04 After value of row changed and setUpdated executed - it will send data for whole row to the server side. In theory , it possible to sent only data about updated cell to the server side, can be done by adding next line dp._changed=true; |