gpt4 book ai didi

grails - 通过操作将选定的jqGrid行传递给按钮

转载 作者:行者123 更新时间:2023-12-02 15:34:04 24 4
gpt4 key购买 nike

我对此有看法




<script type="text/javascript">
/* when the page has finished loading.. execute the follow */
$(document).ready(function () {
jQuery("#customer_list").jqGrid({
url:'jq_customer_list',
datatype: "json",
colNames:['customer','location','id'],
colModel:[
{name:'customer'},
{name:'location',stype:'select', searchoptions:{value:':All;USA:USA;Canada:Canada;Carribean:Carribean;USPacific:USPacific;'}},
{name:'id', hidden:true}
],
rowNum:2,
rowList:[1,2,3,4],
pager: jQuery('#customer_list_pager'),
viewrecords: true,
gridview: true,
multiselect: true
});
$("#customer_list").jqGrid('filterToolbar',{autosearch:true});
});
</script>
<g:link controller="MyController" action="downloadFile">Download</g:link><br>
</div>
<br/><br/>

现在,我想将所选行中的数据传递给该操作。但是,我在任何地方都找不到。

我在 Controller 上的方法当前为空。我只想将所选值的所有ID打印到控制台。

有什么建议么?谢谢

最佳答案

这应该做。

onSelectRow: function(rowid, iRow, iCol, e){
console.log('Id of Selected Row: ' + $(this).jqGrid('getCell', rowid, 'id'));
}

关于grails - 通过操作将选定的jqGrid行传递给按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14445563/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com