LigerUi中获取表grid 的所选的行数据

function getCheckedData()
        {
            var rows = grid.getCheckedRows();
            var str = "";
            $(rows).each(function ()
            {
                str += this.CustomerID + ",";
            });
            alert('选择的是' + str);
        }
 
参考
原文地址:https://www.cnblogs.com/panjinzhao/p/14809673.html