开发者

JQGrid MultiSelect getting the column data

开发者 https://www.devze.com 2022-12-20 13:10 出处:网络
Is there a way for the JQGrid to return an array of column Data for using multiSelect as opposed to just an array of rowIds ?

Is there a way for the JQGrid to return an array of column Data for using multiSelect as opposed to just an array of rowIds ?

At the moment I can only return the last column data that was selected.

jQuery("#buttonSelected").click(function() {

           var ids = jQuery("#relatedSearchGrid").getGridParam('selarrrow');
           var count = ids.length;

           for (var i = 0; i < count; i++) {

           var columnData = $("#relatedSearchGrid").find("tbody")[0].rows[$("#relatedSearchGrid").getGridParam('selrow') - 1].cells[1].innerHTML;

               alert("In the loop and  " + columnData );

           }

           if (count == 0) return;
           var posturl = '<%= ResolveUrl("~") %>Rel******/AddSelected****/' + ids;
           if (confirm("Add these " + count + " Do开发者_如何学JAVAcs?")) {
               $.post(posturl,
               { ids: columnData },
               function() { jQuery("#relatedSearchGrid").trigger("reloadGrid") },
            "json");
           }


       })


Use getRowData to get the data for each row:

var rowData = $("#relatedSearchGrid").getRowData(ids[i]);

var colData = rowData.Name_Of_Your_Column;


    var userListjqGrid = $('#UserListGrid'),
        selRowId = userListjqGrid.jqGrid('getGridParam', 'selrow'),
        userId = userListjqGrid.jqGrid('getCell', selRowId, 'UserId'),
        userName = userListjqGrid.jqGrid('getCell', selRowId, 'UserName'),
        subIds = $(subgridTableId).getGridParam('selarrrow'),
        accessRuleIds = [];
    for (var i = 0; i < subIds.length; i++) {
        accessRuleIds[i] = $(subgridTableId).getRowData(subIds[i]).AccessRuleId;
    }
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号