shield ui grid 获取选中行数据

shield ui grid get selected row data

我正在尝试从屏蔽 ui grid.I 中获取选定的行数据作为 JSON 对象 grid.I 尝试使用 this and this 在他们的 documentation.But 中给出的示例根据需要工作。 grid.select() 给我 TypeError: c.value is not a function grid.selectedRowIndices() 给出 TypeError: grid.selectedRowIndices is not a function

events: {
                selectionChanged: function (e) {
                    //var data = e.target.dataSource.view;

                    var grid = $("#user_grid").swidget();
                    //console.log(grid.selectedRowIndices());
                      console.log(grid.select());

任何帮助都将是 appreciable.Thank 你。

要获取网格中的选定项,您可以使用 selectedRowIndeces,如下所述: http://www.shieldui.com/documentation/grid/javascript/api/methods/selectedRowIndices 确保您使用的是最新版本的小部件。