or

<div class="formElement"> <label for="brands">Brand:</label> <input id="brands" value="@(Model.BrandID)" /></div> <div class="formElement"> <label for="ranges">Ranges:</label> <input id="ranges" value="@(Model.RangeID)" /></div><script type="text/javascript"> var brandSource, rangeSource; $(document).ready(function () { brandSource = new kendo.data.DataSource({ error: handleError, transport: { read: { url: "@Url.Action("Brands ", "DropDown ")", type: "POST" } }, batch: false, schema: { model: { id: "Value", fields: { Value: { type: "number" }, Text: { type: "string" } } } } }) rangeSource = new kendo.data.DataSource({ error: handleError, transport: { read: { url: "@Url.Action("Ranges ", "DropDown ", new { brandId = Model.BrandID })", type: "POST" } }, batch: false, schema: { model: { id: "Value", fields: { Value: { type: "number" }, Text: { type: "string" } } } } }) $("#brands").kendoComboBox({ placeholder: "Select brand...", dataTextField: "Text", dataValueField: "Value", dataSource: brandSource }); $("#ranges").kendoComboBox({ //cascadeFrom: "brands", placeholder: "Select range...", dataTextField: "Text", dataValueField: "Value", dataSource: rangeSource }); });</script>@(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