RoleSelector.js 192 B

12345678
  1. //获取选中的数据
  2. function validChoose() {
  3. var d = [];
  4. $.each($("#dgRoleList").cmsXDataTable("getSelections"), function (index) {
  5. d.push(this);
  6. });
  7. return d;
  8. }