<?php ... // Create the jqGrid instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->renderGrid(...); ?>
With this action we enable the following actions in pager - add, edit, del, search, refresh, export to excel.
The view action is disabled.
To disable some action in navigator use setNavOptions method specifiyng the word navigator. If by example we want to disable adding of records do this
<?php ... // Create the jqGridRender instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->setNavOptions('navigator',array('add'=>false)); $grid->renderGrid(...); ?>
To change a option in some module use the following methods
setNavOptions(...)
setNavEvent(...)
with first parameter refering to the desired module.
By example if we want to change the width and height of the form and want this to be constant in editing adding records do the following.
Editing by default is disabled when the grid is created. To enable set navigator variable to true.<?php ... // Create the jqGridRender instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->setNavOptions('edit',array("width"=>500, "height"=>300, "recreateForm"=>true)); $grid->renderGrid(...); ?>
To disable a editing in already created navigator you should use navigator property to disable the method<?php ... // Create the jqGrid instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->renderGrid(...); ?>
<?php ... // Create the jqGrid instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->setNavOptions('navigator',araray("edit"=>false)); $grid->renderGrid(...); ?>
To set a particular option and event in the edit form use
setNavOptions(...)
setNavEvent(...)
with first parameter edit. i.e
<?php ... // Create the jqGrid instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->setNavOptions('edit',araray(...)); $grid->setNavEvent('edit',araray(...)); $grid->renderGrid(...); ?>
To call a method in custom java script code use the following convension.
WherejQuery("#grid_id").jqGrid('editGridRow', rowid, properties );
The method uses the following properties from language file:
$.jgrid = { ... edit : { addCaption: "Add Record", editCaption: "Edit Record", bSubmit: "Submit", bCancel: "Cancel", bClose: "Close", saveData: "Data has been changed! Save changes?", bYes : "Yes", bNo : "No", bExit : "Cancel", ... }, ... }
These options can be overwritten when passed as options to the method. When passed to the method we should use by example "bSubmit" => “Submit” and not "$.jgrid.edit.bSubmit" => “Submit”
Properties
Property |
Description |
Default |
---|---|---|
top |
the initial top position of modal dialog. The default value of 0 mean the top position from the upper left corner of the grid. When jqModal option is true (see below) and jqModal plugin is present any value different from 0 mean the top position from upper left corner of the window. |
0 |
left |
the initial left position of modal dialog. The default value of 0 mean the left position from the upper left corner of the grid. When jqModal option is true (see below) and jqModal plugin is present any value different from 0 mean the left position from upper left corner of the window. |
0 |
width |
the width of confirmation dialog |
300 |
height |
the entry height of confirmation dialog |
auto |
dataheight |
the parameter control the scrolling content - i.e between the modal header and modal footer. |
auto |
modal |
determines if the dialog will be modal. Also works only if jqModal plugin is present |
false |
overlay |
Determines the overlay of the modal. Also works only if jqModal plugin is present |
10 |
drag |
Determines if the dialog is dragabale. Works only if jqDnR plugin is present or if the dragable widget is present from jQuery UI |
true |
resize |
determines if the dialog can be resized. Works only is jqDnR plugin is available or resizable widget is present from jQuery UI |
true |
url |
url where to post data. If set, replaces the editurl |
null |
mtype |
Defines the type of request to make (“POST” or “GET”) when data is sent to the server |
POST |
editData |
an array used to add content to the data posted to the server |
empty |
recreateForm |
when set to true the form is recreated every time the dialog is activeted with the new options from colModel (if they are changed) |
false |
jqModal |
If set to true uses jqModal plugin (if present) to creat the dialogs. If set to true and the plugin is not present jqGrid uses its internal function to create dialog |
true |
addedrow |
Controls where the row just added is placed: 'first' at the top of the gird, 'last' at the bottom. Where the new row is to appear in its natural sort order, set reloadAfterSubmit: true |
first |
topinfo |
When set this information is placed just after the modal header as additional row |
empty string |
bottominfo |
When set this information is placed just after the buttons of the form as additional row |
empty string |
saveicon |
array. Determines the icon of the submit button. The default value is [true,”left”,”ui-icon-disk”]. The first item enables/disables the icon. The second item tells where to put the icon to left or to right of the text. The third item corresponds to valid ui icon from theme roller |
|
closeicon |
Array. Determines the icon of the cancel button. The default values are [true,”left”,”ui-icon-close”]. For description of these see saveicon |
|
savekey |
array. Determines the possibility to save the form
with pressing a certain key.The first item enables/disables saving
with pressing certain key. The second item corresponds to key code
for saving. If enabled the default value for saving is [Enter]. |
[false,13] |
navkeys |
array. This option works only in edit mode and add keyboard navigation, which allow us to navigate through the records while in form editing pressing certain keys. The default state is disabled. The first item enables/disables the navigation. The second item corresponds to reccord up and by default is the the key code for Up key. The third item corresponds to reccord down and by default is the key code for Down key |
[false,38,40] |
checkOnSubmit |
This option work only in editing mode. If Set to true this option will work only when a submit button is clicked and if any data is changed in the form. If the data is changed a dilog message appear where the user is asked to confirm the changes or cancel it. Pressing cancel button of the new dialog will return to the form, but does not set the values to its original state. |
false |
checkOnUpdate |
This option is applicable in add and edit mode. When
this option is set to true the behaviour as follow: |
false |
closeAfterAdd |
when add mode, close the dialog after add record |
false |
clearAfterAdd |
when add mode, clear the data after adding data |
true |
closeAfterEdit |
when in edit mode, close the dialog after editing |
false |
reloadAfterSubmit |
reload grid data after posting |
true |
closeOnEscape |
When set to true the modal window can be closed with ESC key from the user. |
false |
ajaxEditOptions |
This option allow to set global ajax settings for the form editiing when we save the data to the server. Note that with this option is possible to overwrite all current ajax setting in the save request including the complete event. |
empty array |
viewPagerButtons |
This option enable or disable the appearing of the previous and next buttons (pager buttons) in the form |
true |
Events
Event |
Description |
---|---|
afterclickPgButtons |
This event can be used only when we are in edit mode
and the navigator buttons are enabled; it fires after the data for
the new row is loaded from the grid, allowing modification of the
data or form before the form is redisplayed. |
afterComplete |
This event fires immediately after all actions and
events are completed and the row is inserted or updated in the
grid. |
afterShowForm |
fires after showing the form; receives as Parameter
the id of the constructed form. |
afterSubmit |
fires after response has been received from server.
Typically used to display status from server (e.g., the data is
successfully saved or the save cancelled for server-side editing
reasons). Receives as parameters the data returned from the
request and an array of the posted values of type
id=value1,value2. |
beforeCheckValues |
This event fires before checking the values (if
checking is defined in colModel via editrules option). |
beforeInitData |
fires before initialize the new form data. Receives,
as parameter, the id of the constructed form. |
beforeShowForm |
fires before showing the form with the new data;
receives as Parameter the id of the constructed form. |
beforeSubmit |
fires before the data is submitted to the server.
Recieves as parameter the posted data array and the formid. |
onclickPgButtons |
This event can be used only when we are in edit
mode; it fires immediately after the previous or next button is
clicked, before leaving the current row, allowing working with
(e.g., saving) the currently loaded values in the form. |
onclickSubmit |
fires after the submit button is clicked and the
postdata is constructed. Parameters passed to this event are: a
options array of the method and the posted data array. The event
should return array of type {} which extends the postdata array. |
onInitializeForm |
fires only once when creating the data for editing
and adding. Receives, as parameter, the id of the constructed
form. |
onClose |
This event is called just before closing the form and when a close icon is clicked, a cancel button is clicked, ESC key is pressed or click on overlay (if jqModal is present). The event can return (optionally) true or false. If the return value is true the form is closed, if false the form does not close. If nothing is returned the form is closed |
errorTextFormat |
The event (can) fire when error occurs from the ajax call and can be used for better formatting of the error messages. To this event is passed response from the server. The event should return single message (not array), which then is displayed to the user. |
serializeEditData |
If set this event can serialize the data passed to the ajax request when we save a form data. The function should return the serialized data. This event can be used when a custom data should be passed to the server - e.g - JSON string, XML string and etc. To this event is passed the data which will be posted to the server |
How is the form constructed
When the form is constructed we set the following rules:
This allow us to easily show or hide some table rows depending on conditions using beforeShowForm event<form ....> <table> <tr id='tr_myfield'> <td> Caption</td> <td>edited element named, in colModel, as "myfield"</td> </tr> ... </table> </form>
When we are in editing mode the data that is posted to the server is object {} that contain:
<?php ... // Create the jqGrid instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->renderGrid(...); ?>
To disable a adding in already created navigator you should use navigator property to disable the method
<?php ... // Create the jqGrid instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->setNavOptions('navigator',araray("add"=>false)); $grid->renderGrid(...); ?>
To set a particular option and event in the add form use
setNavOptions(...)
setNavEvent(...)
with first parameter add. i.e
<?php ... // Create the jqGrid instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->setNavOptions('add',araray(...)); $grid->setNavEvent('add',araray(...)); $grid->renderGrid(...); ?>
This method uses Common Editing Properties from colModel and editurl option from jqGrid
The editGridRow method is also used to add data to the server, by passing “new” as the rowid when called in custom JavaScript code
This method uses Common Editing Properties from colModel and editurl option from jqGrid.
Calling convention:
jQuery("#grid_id").jqGrid('editGridRow, "new", properties );
Where
The method uses the following properties from language file:
$.jgrid = { ... edit : { addCaption: "Add Record", editCaption: "Edit Record", bSubmit: "Submit", bCancel: "Cancel", bClose: "Close", saveData: "Data has been changed! Save changes?", bYes : "Yes", bNo : "No", bExit : "Cancel", ... }, ... }
The options are the same as those in editng row - See above.
How is the form constructed
When the form is constructed we set the following rules:
<form ....> <table> <tr id='tr_myfield'> <td> Caption</td> <td>edited element named, in colModel, as "myfield"</td> </tr> ... </table> </form>
This allow us to easily show or hide some table rows depending on conditions using beforeShowForm event
What is posted to the server
When we are in add mode the data that is posted to the server is object {} that contain:
<?php ... // Create the jqGrid instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->setNavOptions('navigator',araray("view"=>true)); $grid->renderGrid(...); ?>
To set a particular option and event in the view form use
setNavOptions(...)
setNavEvent(...)
with first parameter view. i.e
<?php ... // Create the jqGrid instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->setNavOptions('view',araray(...)); $grid->setNavEvent('view',araray(...)); $grid->renderGrid(...); ?>
To call a method in custom java script code use the following convension.
WherejQuery("#grid_id").jqGrid('viewGridRow', rowid, properties );
The method uses the following properties from language file:
$.jgrid = { ... view : { caption: "View Record", bClose: "Close" }, ...
Properties
Property |
Description |
Default |
---|---|---|
top |
the initial top position of modal dialog. The default value of 0 mean the top position from the upper left corner of the grid. When jqModal option is true (see below) and jqModal plugin is present any value different from 0 mean the top position from upper left corner of the window. |
0 |
left |
the initial left position of modal dialog. The default value of 0 mean the left position from the upper left corner of the grid. When jqModal option is true (see below) and jqModal plugin is present any value different from 0 mean the left position from upper left corner of the window. |
0 |
width |
the width of confirmation dialog |
300 |
height |
the entry height of confirmation dialog |
auto |
dataheight |
the parameter control the scrolling content - i.e between the modal header and modal footer. |
auto |
modal |
determines if the dialog will be modal. Also works only if jqModal plugin is present |
false |
drag |
Determines if the dialog is dragabale. Works only if jqDnR plugin is present or if the dragable widget is present from jQuery UI |
true |
resize |
determines if the dialog can be resized. Works only is jqDnR plugin is available or resizable widget is present from jQuery UI |
true |
jqModal |
If set to true uses jqModal plugin (if present) to creat the dialogs. If set to true and the plugin is not present jqGrid uses its internal function to create dialog |
true |
topinfo |
When set this information is placed just after the modal header as additional row |
empty string |
bottominfo |
When set this information is placed just after the buttons of the form as additional row |
empty string |
closeicon |
Array. Determines the icon of the cancel button. The default values are [true,”left”,”ui-icon-close”]. For description of these see saveicon |
|
navkeys |
array. This option works only in edit mode and add keyboard navigation, which allow us to navigate through the records while in form editing pressing certain keys. The default state is disabled. The first item enables/disables the navigation. The second item corresponds to reccord up and by default is the the key code for Up key. The third item corresponds to reccord down and by default is the key code for Down key |
[false,38,40] |
closeOnEscape |
When set to true the modal window can be closed with ESC key from the user. |
false |
labelswidth |
Since we construct the view with table element it is difficult to calculate, in this case, how much width is needed for the labels. Depending on the needs this value can be increased or decreased |
30% |
viewPagerButtons |
This option enable or disable the appearing of the previous and next buttons (pager buttons) in the form |
true |
Events
Event |
Description |
---|---|
onClose |
This event is called just before closing the form and when a close icon is clicked, a cancel button is clicked, ESC key is pressed or click on overlay (if jqModal is present). The event can return (optionally) true or false. If the return value is true the form is closed, if false the form does not close. If nothing is returned the form is closed |
beforeShowForm |
fires before showing the form with the new data;
receives as Parameter the id of the constructed form. |
When the form is constructed we set the following rules:
<form ....> <table> <tr id='trv_myfield'> <td> Caption</td> <td id="v_myfield"><span>content of"myfield"</span></td> </tr> ... </table> </form>
Deleting by default is disabled when the grid is created. To enable set navigator variable to true.
To disable a deleting in already created navigator you should use navigator property to disable the method<?php ... // Create the jqGrid instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->renderGrid(...); ?>
<?php ... // Create the jqGrid instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->setNavOptions('navigator',araray("del"=>false)); $grid->renderGrid(...); ?>
To set a particular option and event in the delete form use
setNavOptions(...)
setNavEvent(...)
with first parameter del. i.e
<?php ... // Create the jqGrid instance $grid = new jqGridRender($conn); ... $grid->navigator = true; $grid->setNavOptions('del',araray(...)); $grid->setNavEvent('del',araray(...)); $grid->renderGrid(...); ?>
To call a method in custom java script code use the following convension.
jQuery("#grid_id").jqGrid('delGridRow', row_id_s, options );
Where:
The method uses the following properties from language file:
These options can be overwritten when passed as options to the method. When passed to the method we should use by example "bSubmit" => “Delete” and not "$.jgrid.del.bSubmit" => “Delete”$.jgrid = { ... del : { caption: "Delete", msg: "Delete selected record(s)?", bSubmit: "Delete", bCancel: "Cancel" }, ...
Properties
Property |
Description |
Default |
---|---|---|
top |
the initial top position of modal dialog. The default value of 0 mean the top position from the upper left corner of the grid. When jqModal option is true (see below) and jqModal plugin is present any value different from 0 mean the top position from upper left corner of the window. |
0 |
left |
the initial left position of modal dialog. The default value of 0 mean the left position from the upper left corner of the grid. When jqModal option is true (see below) and jqModal plugin is present any value different from 0 mean the left position from upper left corner of the window. |
0 |
width |
the width of confirmation dialog |
300 |
height |
the entry height of confirmation dialog |
auto |
dataheight |
the parameter control the scrolling content - i.e between the modal header and modal footer. |
auto |
modal |
determines if the dialog will be modal. Also works only if jqModal plugin is present |
false |
drag |
Determines if the dialog is dragabale. Works only if jqDnR plugin is present or if the dragable widget is present from jQuery UI |
true |
resize |
determines if the dialog can be resized. Works only is jqDnR plugin is available or resizable widget is present from jQuery UI |
true |
url |
url where to post data. If set, replaces the editurl |
null |
mtype |
Defines the type of request to make (“POST” or “GET”) when data is sent to the server |
POST |
delData |
an array used to add content to the data posted to the server |
empty |
jqModal |
If set to true uses jqModal plugin (if present) to creat the dialogs. If set to true and the plugin is not present jqGrid uses its internal function to create dialog |
true |
delicon |
array. Determines the icon of the submit button. The default value is [true,”left”,”ui-icon-delete”]. The first item enables/disables the icon. The second item tells where to put the icon to left or to right of the text. The third item corresponds to valid ui icon from theme roller |
|
cancelicon |
Array. Determines the icon of the cancel button. The default values are [true,”left”,”ui-icon-cancel”]. For description of these see delicon |
|
reloadAfterSubmit |
reload grid data after posting |
true |
closeOnEscape |
When set to true the modal window can be closed with ESC key from the user. |
false |
ajaxDelOptions |
This option allow to set global ajax settings for the form editiing when we delete the data to the server. Note that with this option is possible to overwrite all current ajax setting in the delete request including the complete event. |
empty array |
Events
Event |
Description |
---|---|
afterComplete |
This event fires immediately after all actions and
events are completed and the row is inserted or updated in the
grid. |
afterShowForm |
fires after showing the form; receives as Parameter
the id of the constructed form. |
afterSubmit |
fires after response has been received from server.
Typically used to display status from server (e.g., the data is
successfully deleted or the delete cancelled for server-side
reasons). Receives as parameters the data returned from the
request and an array of the posted values of type
id=value1,value2. |
beforeShowForm |
fires before showing the form with the new data;
receives as Parameter the id of the constructed form. |
beforeSubmit |
fires before the data is submitted to the server.
Recieves as parameter the posted data array and the formid. |
onclickSubmit |
fires after the submit button is clicked and the
postdata is constructed. Parameters passed to this event is a
options array of the method. The event should return array of type
{} which extends the postdata array. |
onClose |
This event is called just before closing the form and when a close icon is clicked, a cancel button is clicked, ESC key is pressed or click on overlay (if jqModal is present). The event can return (optionally) true or false. If the return value is true the form is closed, if false the form does not close. If nothing is returned the form is closed |
What is posted to the server
When we are in delete mode the data that is posted to the server is object {} that contain: