如何访问struts jquery grid插件选定行上的数据?

发布于 2024-10-20 13:53:23 字数 1066 浏览 1 评论 0原文

这是网格的简短代码:

 <s:url id="remoteurl" action="jsontable"/>
<sjg:grid
    id="gridtable"
    caption="Items Result"
    formIds="gridSearchForm" 
    reloadTopics="reloadItemsGrid"
    dataType="json"
    href="%{remoteurl}"
    pager="true"
    gridModel="gridModel"
    rowList="10,15,20"
    rowNum="15"
    rownumbers="true"
    navigator="true"
    navigatorSearch="true"
    navigatorRefresh="true"
    viewrecords="true"
    width="600"
    pagerInput="false"
    pagerPosition="center"
    recordpos="right"
    direction="rtl"
    onSelectRowTopics="rowselect">

    <sjg:gridColumn name="title" index="title" title="title" sortable="false"/>
    <sjg:gridColumn name="price" index="price" title="price" formatter="integer"/>

和 subscribe 函数:

$.subscribe('rowselect', function(event, data) {
alert('Selected Row : ' + event.originalEvent.id);
});

访问的 id 是项目数据库中的行的 event.originalEvent.id id。

如何访问所选行的价格和标题参数?有人可以给出要使用的语法的示例吗?是通过数据还是事件?

谢谢!

Here's a brief code of the Grid:

 <s:url id="remoteurl" action="jsontable"/>
<sjg:grid
    id="gridtable"
    caption="Items Result"
    formIds="gridSearchForm" 
    reloadTopics="reloadItemsGrid"
    dataType="json"
    href="%{remoteurl}"
    pager="true"
    gridModel="gridModel"
    rowList="10,15,20"
    rowNum="15"
    rownumbers="true"
    navigator="true"
    navigatorSearch="true"
    navigatorRefresh="true"
    viewrecords="true"
    width="600"
    pagerInput="false"
    pagerPosition="center"
    recordpos="right"
    direction="rtl"
    onSelectRowTopics="rowselect">

    <sjg:gridColumn name="title" index="title" title="title" sortable="false"/>
    <sjg:gridColumn name="price" index="price" title="price" formatter="integer"/>

and the subscribe function:

$.subscribe('rowselect', function(event, data) {
alert('Selected Row : ' + event.originalEvent.id);
});

The id accessed is the event.originalEvent.id id of the row from the database of the item.

How do I access the price and title parameters of the selected row? Can someone give an example for the syntax to be used? is it through data or event?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你げ笑在眉眼 2024-10-27 13:53:23
$.subscribe('rowselect', function(event, data) {
var grid = event.originalEvent.grid; 
var sel_id = grid.jqGrid('getGridParam', 'selrow'); 
var price = grid.jqGrid('getCell', sel_id, 'price'); 
alert(price); });

这解决了问题:)

$.subscribe('rowselect', function(event, data) {
var grid = event.originalEvent.grid; 
var sel_id = grid.jqGrid('getGridParam', 'selrow'); 
var price = grid.jqGrid('getCell', sel_id, 'price'); 
alert(price); });

This solves the problem :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文