unable to overwrite kendo treeview 'Loading' messages in Asp.net MVC -
how update default "loading..." message in kendo treeview inside razor cshtml. using kendo api 2014.1.416
@(html.kendo().treeview().name("producttree") .datasource(d => d .model(m => m .id("productid") .haschildren("categories")) .read(r => r.action("_producttree", "home"))) .datatextfield("productname"))
there .messages(...)
configurator:
@(html.kendo().treeview().name("producttree") .messages(p => p.loading("...")) ....
Comments
Post a Comment