Can Kendo Grid be always in edit mode?

前端 未结 3 2040
悲哀的现实
悲哀的现实 2021-02-20 07:52

Does anyone know if the kendo grid could be always set to edit mode at all times?

We don\'t want the user to click on a cell or a button to activate the edit mode. We w

3条回答
  •  渐次进展
    2021-02-20 08:35

    Out of the box, not exactly. You can enable Batch editing which displays everything normally, but clicking a cell will switch it to an editor automatically.

    Example

    To enable it, set { batch: true } on the table's datasource. Otherwise you're off to some deeper scripting. Checked and simply calling editRow on all rows doesn't do it. Default behavior is to disable editing on a row when a new one is taken into edit mode.

    So, quick look says Batch mode - won't display editors all the time, but works and out of the box.

提交回复
热议问题