Hello
I have a grid razor as follows. How can I add auto complete to grid column and not to single text box.
I have a grid razor as follows. How can I add auto complete to grid column and not to single text box.
@(Html.Kendo().Grid(Model) .Name("Grid") .Columns(columns => { columns.Bound(model => model.MEMBER_ID); columns.Bound(model => model.R_MONTH); columns.Bound(model => model.PRINT_YN); columns.Command(command => { command.Edit(); command.Destroy(); }).Width(200); }) .ToolBar(toolbar => { toolbar.Create(); }) .Editable(editable => editable.Mode(GridEditMode.InLine)) .Pageable() .Sortable() .Scrollable() .DataSource(dataSource => dataSource .Ajax() .ServerOperation(false) .Events(events => events.Error("error_handler")) .Model(p => p.Id(model => model.SR_NO)) .Create(update => update.Action("Editing_Create", "Repost")) .Read(read => read.Action("Editing_Read", "Repost")) .Update(update => update.Action("Editing_Update", "Repost")) .Destroy(update => update.Action("Editing_Destroy", "Repost")) ))