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

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

javascript - Get parameter of GET request -

javascript - Twitter Bootstrap - how to add some more margin between tooltip popup and element -