Редактор табулятора не редактирует свернутые поля в адаптивном режиме - PullRequest
0 голосов
/ 22 января 2019

Я использую Tabulator для отображения динамических таблиц, я успешно загрузил данные в таблицу с помощью Ajax. Я могу редактировать строки в таблице, пока не добавлю свойство адаптивного макета. После этого можно редактировать только строки верхнего уровня, но не строки, которые были свернуты.

Как заставить это работать?

    var table = new Tabulator("#Contacts", {

        layout: "fitDataFill",
        responsiveLayout: "collapse",
        pagination: "local",
        paginationSize: 15,
        columns: [
            { formatter: "responsiveCollapse", width: 30, minWidth: 30, align: "center", resizable: false, headerSort: false },
            { title: "ID"}, { title: "Company", headerFilter: true, editor: true }, { title: "Name", editor: true },
        { title: "Context Reference", editor: true }, { title: "Role", editor: true }, { title: "Department", editor: true },
        { title: "Lead Source1", editor: true }, { title: "Lead Source2", editor: true }, { title: "Account Rep", editor: true },
            { title: "Address 1",  editor: true }, { title: "Address 2", editor: true }, { title: "Address 3", editor: true },
            { title: "City", editor: true }, { title: "State", editor: true }, { title: "Post Code", editor: true },
        { title: "Country", editor: true }, { title: "Phone", editor: true }, { title: "Phone Extension", editor: true },
        { title: "Mobile", editor: true }, { title: "Fax", editor: true }, { title: "Fax Extension", editor: true },{ title: "Email Address", editor: true },
        { title: "Website", editor: true }, { title: "RecGUID", }, { title: "Terms", editor: true },
        { title: "Tax Rate", editor: true }, { title: "Tax Zone", editor: true }, { title: "Price Profile", editor: true },
        { title: "Accounting CustomerID", editor: true }, { title: "Account Number", editor: true }, { title: "Custom Text01", editor: true },
        { title: "Custom Text02", editor: true }, { title: "Custom Text03", editor: true }, { title: "Custom Text04", editor: true },
        { title: "Custom Text05", editor: true }, { title: "Custom Text06", editor: true }, { title: "Custom Text07", editor: true },
        { title: "Custom Text08", editor: true }, { title: "Custom Text09", editor: true }, { title: "Custom Text10", editor: true },
        { title: "Custom Text11", editor: true }, { title: "Custom Text12", editor: true }, { title: "Custom Text13", editor: true },
        { title: "Custom Text14", editor: true }, { title: "Custom Text15", editor: true }, { title: "Custom Number01", editor: true },
        { title: "Custom Number02", editor: true }, { title: "Custom Number03", editor: true }, { title: "Custom Number04", editor: true },
        { title: "Custom Number05", editor: true },{ title: "Custom Date01", editor: true }, { title: "Custom Date02", editor: true },
        { title: "Custom Date03", editor: true },{ title: "Custom Date04", editor: true }, { title: "Custom Date05", editor: true },
        { title: "Custom Memo01", editor: true },{ title: "Custom Memo02", editor: true }, { title: "Custom Memo03", editor: true },
        { title: "Custom Memo04", editor: true },{ title: "Custom Memo05", editor: true }, { title: "Notes", editor: true },
        ],
        cellEdited: EditRow,
    },);

1 Ответ

0 голосов
/ 27 января 2019

В настоящее время (версия 4.1) свернутые столбцы доступны только для чтения, редакторы применяют только полностью видимые столбцы.

Это может быть добавлено в план развития в будущем, но не будет доступно для следующих нескольких выпусковне менее

...