Jq Grid - 显示/隐藏所有网格

发布于 2024-11-29 19:22:31 字数 150 浏览 0 评论 0原文

我的 jsp 应用程序中有四个 jqgrid。它们是使用 addXmlData (messageXML) 方法通过 ajax 加载的。我如何隐藏三个网格并仅显示其中一个,并根据单击按钮隐藏和显示其他网格。网格的内容通过ajax根据用户的需求进行更新。我一次只需要显示一个,以免弄乱表格。

I have four jqgrid in my jsp application. They are loaded via ajax using the method addXmlData (messageXML) How can I hide three of the grid and show only one of them, and in accordance with the click of a button, hide and show the other grids. The content of the grids are updated according to the user's needs via ajax. I need only show one at a time not to mess up the form.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

北城半夏 2024-12-06 19:22:31

我找到了解决方案。说实话很简单。只需在 div 之间添加标签表并使用 $("#divid")。隐藏 ();隐藏和$(“#divid”)。展示 ();显示。

代码如下。

...

    <div id="divid">
        <table id="listid" class="scroll"> <tr> <td/> </ tr> </ table>
    </ div>

...

<script>
...
    $ ("#divid"). hide ();
    $ ("#divid"). show ();
...
</ script>

I found the solution. Pretty simple to tell the truth. just add the tags table between divs and use the $ ("# divid"). hide (); to hide and $ ("# divid"). show (); to display.

The code was as follows.

...

    <div id="divid">
        <table id="listid" class="scroll"> <tr> <td/> </ tr> </ table>
    </ div>

...

<script>
...
    $ ("#divid"). hide ();
    $ ("#divid"). show ();
...
</ script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文