Hello
I am trying to get a value from an textbox once the user has clicked on export and load that value as parameter in the url.action. What can I use at keyword = "978"
Help much appreciated
<input id='keyword'/>
Html.Kendo()
.Grid<TitleBibliographicGridModel>()
.Name("BookList")
.ToolBar(toolBar => toolBar.Custom()
.Text("Export To Excel")
.HtmlAttributes(new { id = "export" })
.Url(Url.Action("ExportBookSearch", "Dashboard", new { keyword = "978" })))
.Columns(columns =>
I am trying to get a value from an textbox once the user has clicked on export and load that value as parameter in the url.action. What can I use at keyword = "978"
Help much appreciated
<input id='keyword'/>
Html.Kendo()
.Grid<TitleBibliographicGridModel>()
.Name("BookList")
.ToolBar(toolBar => toolBar.Custom()
.Text("Export To Excel")
.HtmlAttributes(new { id = "export" })
.Url(Url.Action("ExportBookSearch", "Dashboard", new { keyword = "978" })))
.Columns(columns =>