jqGrid показывает ошибку при создании subGrid: true - PullRequest
0 голосов
/ 06 апреля 2020

enter image description here

, если я пытаюсь добавить subGrid: true, ниже ошибка. Я использую JQ Grid 5.3.2 версии

that.$el.find("#projects_jqGrid").jqGrid({
          datatype:"local",
          data:that.parentRows.projects,
          height: '100%',
          mtype: "GET",
          page: 1,
          pager: "#projects_jqGridPager",
          colModel: [
               { label: 'Project Name', name: 'ProjectName', key: true, width: 75, align:'left' },
               { label: 'User Count', name: 'UserCount', width: 150, align:'left' },
               { label: '# of VMs', name: 'VMCount', width: 150, align:'left' },
         ]
         subGrid: true
    });
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...