Как добавить столбец флажок по умолчанию в jqxTreeGrid - PullRequest
0 голосов
/ 04 сентября 2018

Вот мои столбцы - в этом случае, когда я нажимаю на третий столбец для редактирования, он показывает флажок, но я хочу по умолчанию флажок. Пожалуйста, кто-нибудь может взглянуть на это

columns: any[] = [
    { text: 'Name', dataField: 'AssetClassName', align: 'center', width: '70%' },
    { text: 'Code', dataField: 'AssetClassCode', align: 'right', cellsAlign: 'right', width: '20%' },
    {
      text: 'Inactive', dataField: 'Inactive', filtertype: 'checkedlist', align: 'center', cellsAlign: 'center', width: '10%'
      , columnType: 'template',
      createEditor: (row, cellvalue, editor, cellText, width, height) => {
        // construct the editor.
        editor.jqxCheckBox({ checked: false, hasThreeStates: false});
      },
      initEditor: (row, cellvalue, editor, celltext, width, height) => {
        // set the editor's current value. The callback is called each time the editor is displayed.
        editor.jqxCheckBox('checked', cellvalue);
      },
      getEditorValue: (row, cellvalue, editor) => {
        // return the editor's value.
        return editor.val();
      }
    }
];
...