cui
cui

Reputation: 139

KendoUI: how to use edit in line for html form in KendoUI

Firstly, I am doing a research on KendoUI, and my experience is mainly on struts-layout taglib. And now I got issues on HTML Form while using KendoUI.

My Questions are as below:

  1. Can Kendo ListView be used to replace the html form? That is, there is no Form any more, but a kendo ListView.

  2. If still use html form, how to make each field editable in line (is there any kendo widget to do same behavior as JQuery UI plugin X-editable)?

Upvotes: 0

Views: 425

Answers (1)

CodingWithSpike
CodingWithSpike

Reputation: 43708

The closest thing would probably be a Grid that is editable. Clicking on a cell puts it in edit mode: http://demos.telerik.com/kendo-ui/grid/editing

But you could also make a custom Kendo UI widget that behaves basically the same as x-editable by having a clickable element that opens a Kendo Tooltip box with an input element in it.

Upvotes: 1

Related Questions