Jquery 网格加载文本禁用
我使用 jqGrid 来显示呼叫详细信息,它将每秒刷新或重新加载。但当它重新加载时,它显示正在加载...就像我不想每秒显示该消息。
所以我需要在加载/重新加载我的代码时禁用加载文本(正在加载...)和 JQuery 网格的 UI
:
jQuery("#list").jqGrid(
{
url: "activeCallDetails.html",
datatype: 'json',
mtype:'post',
width:930,
height: 200,
shrinkToFit:true,
loadtext : '',
jsonReader:
{
repeatitems : false, id: "0"
},
multiselect: false,
viewrecords: true,
headtitles: true,
paging: true,
loadtext : '',
rowNum:10,
rowList:[10,20],
pager: jQuery("#page"),
loadonce:false,
caption: "Active Call List"
}).navGrid('#page',
{
edit:false,
add:false,
del:false,
search:false
});
但是加载时有一个没有文本的小框。
有什么解决办法吗?
I used a jqGrid for display the call details it will refresh or reload with every seconds. but when it reload it is showing Loading... like that I don't want to show that message every second.
So I need to disable the loading text (Loading...) and the UI of JQuery grid while loading/reloading
my code is :
jQuery("#list").jqGrid(
{
url: "activeCallDetails.html",
datatype: 'json',
mtype:'post',
width:930,
height: 200,
shrinkToFit:true,
loadtext : '',
jsonReader:
{
repeatitems : false, id: "0"
},
multiselect: false,
viewrecords: true,
headtitles: true,
paging: true,
loadtext : '',
rowNum:10,
rowList:[10,20],
pager: jQuery("#page"),
loadonce:false,
caption: "Active Call List"
}).navGrid('#page',
{
edit:false,
add:false,
del:false,
search:false
});
but there is a small box without text while loading.
Any solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要禁用加载消息,您可以使用以下 jqGrid 选项:
To disable loading message you can use the following jqGrid option: