Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在底部更改 kendo UI listview 控件分页名称
因为它默认显示“项目”我想将其更改为“症状”
$("#pager").kendoPager({ message: { items:"Symptoms" }
你试过这个吗?
剃刀:
@(Html.Kendo().ListView(Model) .Name("listView") .Pageable(p => p.Messages(m => m.Display("Symptoms {0}-{1} to {2}"))
Javascript:
$("#pager").kendoPager({ messages: { display: "{0} - {1} of {2} symptoms" } });