This section provides an overview of what jqgrid is, and why a developer might want to use it.
It should also mention any large subjects within jqgrid, and link out to the related topics. Since the Documentation for jqgrid is new, you may need to create initial versions of those related topics.
The first grid
JqGrid is implemented as jQuery plugin, our plugin uses jQuery UI CSS or Bootstrap CSS for styling. Thus one would have to include the corresponding JavaScript and CSS files. The second basic thing, which one should know, is the fact that free jqGrid uses HTML
internally. One would have to create an empty
element to reserve the place where the grid should be created.
Finally one should call jQuery("#tableId").jqGrid({/*options*/}); to create the grid. Different options of jqGrid provides the data of the table body and the information about the outer part of the grid. For example, the code below