views:

635

answers:

1

Hello! i work with jqgrid for listings only also i don't use jqgrid forms i need to call external forms (example: update.cgi?id=123) to make modifications on the database. how can i make that ? thanks a lot

A: 

Look at the documentation for the 'editurl' parameter.

e.g. editurl: "/GridDemo/GridSave",

Mark your columns as editable, add the appropriate options to the page control too, e.g.

    jQuery("#list2").jqGrid('navGrid', '#pager2',
              {     
                  edit: { height: 280, reloadAfterSubmit: false },
                  add: { height: 280, reloadAfterSubmit: false },
                  del: { reloadAfterSubmit: false }, search: false
              });
Hightechrider