Skip to content Skip to sidebar Skip to footer

Jqgrid Not Saving Data To Database

i am trying to create an editable grid with jqgrid - however I cant get the data to save to the database – I know its probably something really simple, but coding is not really m

Solution 1:

Look at the documentation of the cell editing. You should use cellsubmit: 'remote' and cellurl instead of cellsubmit: 'clientArray'. You need of course write on the server part (referenced by cellurl URL) the code which save the changes in the database. The option editurl defines the URL used for inline and form editing but not for cell editing.


Post a Comment for "Jqgrid Not Saving Data To Database"