Hi,
I am able to bind the form to a view model, but I want to add some extra text or image between fields, is it possible?
Thanks,
Wesley

On this page:
https://www.telerik.com/aspnet-core-ui/listbox
There is a See Demo button that references this link:
http://demos.telerik.com/kendo-ui/listbox/index
This link is incorrect as it brings me to the "Kendo UI for JQuery". Instead, I expect it to bring me to the aspnet core demos
https://demos.telerik.com/aspnet-core/listbox/templates
This is quite confusing.

Hi
I am having trouble understanding what some of these options do and having trouble to find documentation about it
@Html.Kendo().Grid<Model>().Name().Columns().DataSource(source => source.Ajax().PageSize(20).Model(m => model.Id(p =>p.Id)).ServerOperation(false).Read(read => read.Action("","").Data("getId")
I don't understand what Model does in Datasource, ServerOperation(false), and .Data("getId").
I also have a endpoint
public ActionResult GetData([DataSourceRequest] DataSourceRequest, int id){ // some stuff }
I understand this is hit by the Action Method in read but I don't understand why most of the DataSourceRquest in empty (for instance page size is 0, when I would think it would be 20).

I am able to get data from the source.Read method as pictured. However, the control doesn't display back the data.
Once I get that working, I need to post changes to the item order. If I have:
Then I move c up one:
How do I capture the position of c and the position of b to update the database using the Order property? I assume I capture the onReorder event.
public partial class Option { public int Id { get; set; } [MaxLength(50)] public string Name { get; set; } [MaxLength(128)] public string Description { get; set; } public int Order { get; set; }...@(Html.Kendo().ListBox() .DataTextField("Name") .DataValueField("Id") .DataSource(source => { source.Read(read => { read.Action("IndexJson", "SessionOptionTemplates").Data("gridGetData"); }); }) .Toolbar(toolbar => { toolbar.Position(ListBoxToolbarPosition.Right); toolbar.Tools(tools => tools .MoveUp() .MoveDown() .Remove()); }) .Events(events => events .Remove("onRemove") .Reorder("onReorder") ))
Thanks in advance for your help, Joel
