or
@(Html.Kendo().Grid<tblAttachFile>() .Name("tblAttachFile") .BindTo(Model.tblAttachFiles) .Columns(col => { col.Bound(p => p.Attach_File_Name).Title("File Name"); col.Bound(p => p.Attach_File_Path).Title("File Path"); col.Bound(p => p.Attach_File_Description).Title("File Description"); col.Command(cmd => cmd.Edit()); }) //.ToolBar(toolbar => toolbar.Create()) .Editable(ed => ed.Mode(GridEditMode.PopUp).Window(w => w.Name("winEdit").Title("My Test").Content("Loading").LoadContentFrom("Edit", "AttachFile", new { id = 1 }))) .Pageable() .Sortable() .Scrollable() .DataSource(ds => ds .Server() .Model(m => m.Id(p => p.Attach_File_ID)) .Update("Edit", "AttachFile") ))// GET: /tblAttachFiles/Edit/5[Authorize]public ActionResult Edit(int id){ tblAttachFile tblattachfile = tblattachfileRepository.GetOne(id); ControllerHelper.filePath = tblattachfile.Attach_File_Path; return View(tblattachfile);}//// POST: /tblAttachFiles/Edit/5[AcceptVerbs(HttpVerbs.Post), Authorize]public ActionResult Edit(int id, FormCollection collection){ tblAttachFile tblattachfile = tblattachfileRepository.GetOne(id); try { tblattachfile.Attach_File_Path = ControllerHelper.filePath; ControllerHelper.filePath = ""; tblattachfile.Updated_Date = DateTime.Now; tblattachfile.Updated_By = User.Identity.Name; UpdateModel(tblattachfile); tblattachfileRepository.Save(); return RedirectToAction("Detail", new { id = tblattachfile.Attach_File_ID }); } catch { ModelState.AddRuleViolations(tblattachfile.GetRuleViolations()); return View(tblattachfile); }}Dear Kendo support team,
I use Kendo UI grid within a Bootstrap Responsive Layout and would like to add 2 items to the grid's column menu.
One for increasing the current column width by a certain amount and one for the shrinking the width. Ideally I would like to have an icon as menuitem.
Please give me some advise how to manage this.
Thank you in advance