.ToolBar(toolbar =>{
toolbar .ClientTemplate(
"<text>" +
"<a class=\"k-primary" href=\””+@Url.Action ("CreateId", "Home") + "\">" "Create New Person" +
"</a>" +
"</text>");
toolbar .Excel().Text("Excel");
})
Excel(excel => excel
FileName("Tabledata.xlsx")
Filterable(true))
I am trying to add excel buuton the existing client template but, the excel is not coming only the create new preson button is only coming. If i write the excel individually then it is working. I want the create new person button next to it the excel button.
can some one plz look into this.
Thanks.