Telerik MVC grid-如何更改“无记录消息” ajax 调用之间
我正在使用 Telerik MVC 网格 ajax 绑定来显示一些记录。 加载网格时,网格中的消息是“未找到记录”。 当 ajax cal 完成时,消息就会发送并加载数据。 但是在加载数据之前显示“未找到记录”的消息会让用户感到困惑。
谁能告诉我如何将此消息更改为“正在加载...”直到 ajax cal 完成。
谢谢。
I am using Telerik MVC grid ajax binding to show some records.
While the grid is loaded,the message in grid is "No records found".
When ajax cal is complete,then the message goes and data is loaded.
But this message of "No records found" till data is loaded is confusing to the user.
Can anyone tell me how to change this message as "Loading..." till the ajax cal is complete.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在网格中搜索
t-no-data
类。类似的东西应该放在网格的
onLoad()
中Do a search for the
t-no-data
class in your grid. Something likeshould go in your grid's
onLoad()
IMO,将“.NoRecordsTemplate("Loading...")”添加到网格是更好的方法。
IMO, adding ".NoRecordsTemplate("Loading...")" to grid is better approach.
我建议不要使用 NoRecordsTemplate,而是执行以下操作:
函数 Grid_onLoad(e) {
$('.t-no-data td').text('正在加载');
这样
,如果没有记录,网格仍将显示“未找到记录”,但用户将在 ajax 调用期间看到“正在加载”消息。
Instead of using the NoRecordsTemplate, I suggest the following:
function Grid_onLoad(e) {
$('.t-no-data td').text('Loading');
}
That way if there are no records, the grid will still display the "No Records Found", but the user will see a "Loading" message during the ajax call.
您可以使用 .NoRecordsTemplate 来加载 OnDataBound 事件来指定何时没有记录。
脚本代码
You can use .NoRecordsTemplate for loading time with OnDataBound Event to specify when no records.
Script Code