Hi,
We want to use the Kendo UI grid, but with inline editing functionality.
We want to have an edit button on the end of the row. If the button is clicked, the detailed row templated should be shown, but should be editable of course.
It seems to be a combination of following examples:
Detail Row Template - Grid - Kendo UI for Angular (telerik.com)
Custom Editing in Reactive Forms - Grid - Kendo UI for Angular (telerik.com)
Example:
Grid has a data item with two columns (Order + Name) and an actions column. The data item also contains other columns which are only visible in edit-mode: 'Nederland', 'Frans', 'Engels', 'Active'. The grid should be inline-editable, by showing the edit-form below the non-editable row directly. (combination of the two mentioned links above: master/detail + custom editing in reactive forms)
On top of that, we want to create a generic grid (wrapped kendo ui grid). The templates/columns/layouts should be definable outside that generic grid. In that way we can use the generic grid on multiple pages and the templates/columns/layouts should be provided as input to that component.
How can we achieve this?