Hi,
i am using jqgrid its working fine.
I have scenario where i have to add the blank row in jgrid instead of popup to add the row.
how can i do it.
Please Help.
Thanks.
Hi,
i am using jqgrid its working fine.
I have scenario where i have to add the blank row in jgrid instead of popup to add the row.
how can i do it.
Please Help.
Thanks.
from the jqgrid demo page, i see this:
jQuery("#list7").jqGrid('setGridParam',{rowNum:15}).trigger("reloadGrid");
see: http://trirand.com/blog/jqgrid/jqgrid.html manipulating -> set methods
You can use for example addRowData. Look at http://stackoverflow.com/questions/3651585/jqgrid-how-to-add-a-new-row-inside-the-grid-not-via-a-modal.
Probably the answer http://stackoverflow.com/questions/3590594/spreadsheet-like-inline-editing-in-jqgrid/3591915#3591915 and the demo http://www.ok-soft-gmbh.com/jqGrid/ClientsideEditing5.htm could help you also.