Jquery 网格加载文本禁用

发布于 2024-12-23 01:10:15 字数 786 浏览 0 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抱猫软卧 2024-12-30 01:10:15

要禁用加载消息,您可以使用以下 jqGrid 选项

loadui: 'disable'

To disable loading message you can use the following jqGrid option:

loadui: 'disable'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文