Unplanned
Last Updated: 23 Aug 2023 11:51 by Odd Veibust
Imported User
Created on: 19 Sep 2016 04:55
Category: Grid
Type: Feature Request
8
Add kendo grid mvvm binding for columns
<div data-role="grid"
                 data-editable="true"
                 data-toolbar="['create', 'save']"
                 data-columns="columns"
                 data-bind="source: products}"></div>


 var viewModel = kendo.observable({
products:  ...
 columns:[
        {field:"id", width:50},
        {field: "name", width:200}
         ...etc
        ]
});
1 comment
Odd Veibust
Posted on: 23 Aug 2023 11:51
It's insane that this is not supported already. It's been requested for 7 years now. Inline column definition is way too messy.