This example show how we can add dialog for data editing.
See below for all available options.
Note: The data is not saved to the server
Description
This method uses colModel and editurl parameters from jqGrid
Calling:
jQuery("#grid_id").editGridRow( the_row_id, options );
the_row_id is the row to edit options top : 0 the initial top position of edit dialog left: 0 the initinal left position of edit dialog
If the left and top positions are not set the dialog apper on
upper left corner of the grid width: 0, the width of edit dialog - default 300 height: 0, the height of edit dialog default 200 modal: false, determine if the dialog should be in modal mode default is false drag: true,determine if the dialog is dragable default true addCaption: "Add Record",the caption of the dialog if the mode is adding editCaption: "Edit Record",the caption of the dialog if the mode is editing bSubmit: "Submit", the text of the button when you click to data default Submit bCancel: "Cancel",the text of the button when you click to close dialog default Cancel url: , url where to post data. If set replace the editurl processData: "Processing...", Indicator when posting data closeAfterAdd : false, when add mode closes the dialog after add record - default false clearAfterAdd : true, when add mode clears the data after adding data - default true closeAfterEdit : false, when in edit mode closes the dialog after editing - default false reloadAfterSubmit : true reloads grid data after posting default is true
// Events intializeForm: null fires only once when creating the data for editing and adding.
Paramter passed to the event is the id of the constructed form. beforeInitData: null fires before initialize the form data.
Paramter passed to the event is the id of the constructed form. beforeShowForm: null fires before showing the form data.
Paramter passed to the event is the id of the constructed form. afterShowForm: null fires after the form is shown.
Paramter passed to the event is the id of the constructed form. beforeSubmit: null fires before the data is submitted to the server
Paramter is array of type name:value. When called the event can return array
where the first parameter can be true or false and the second is the message of the error if any
Example: [false,"The value is not valid"] afterSubmit: null fires after the data is posted to the server. Typical this
event is used to recieve status form server if the data is posted with success.
Parameters to this event are the returned data from the request and array of the
posted values of type name:value