我想将组合框和文本字段数据的数据加载到网格中。
怎么做?
高于图像:选择第1列中的框数据和第2列中的文本框数据。
这是我的Jsp Grid代码:
<s:url id="remoteurl" action="" />
<sjg:grid caption="RECORDS"
gridModel="dto_plot_rep"
width="300" height="80"
href="%{remoteurl}"
id="gridtable2"
rownumbers="true"
viewrecords="true"
pager="true"
pagerPosition="centar"
navigator="true"
navigatorSearch="true"
navigatorSearchOptions="{multipleSearch:true}"
navigatorDelete="false"
navigatorEdit="false"
loadonce="true"
onCompleteTopics="cal_tot"
userDataOnFooter="true"
reloadTopics="reloadPlot"
rowNum="10"
>
<sjg:gridColumn name="m_tab_p" index="m_tab_p" title="P" width="180" align="left" search="true" searchoptions="{sopt:['eq','cn']}" sortable="true"/>
<sjg:gridColumn name="m_tab_ce" index="m_tab_c" title="C" width="180" align="left" search="true" searchoptions="{sopt:['eq','cn']}" sortable="true"/>
</sjg:grid>
答案 0 :(得分:1)
addRowData
方法允许您向jqgrid添加行。 Docs
我们假设您可以将表单中的数据捕获到数组arr = [2, 4.0]
您可以按如下方式插入行:
<button id="add" type="button">ADD</button>
<script>
$("#add").click(function(){
arr = [2, 4.0]; //You will need to populate this array based on values of your form
lastId = parseInt($(#gridId).getDataIDs().length) + 1;
$("#gridId").jqGrid('addRowData',lastId, arr, "last");
});
</script>