Jq Grid - 显示/隐藏所有网格
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决方案。说实话很简单。只需在 div 之间添加标签表并使用 $("#divid")。隐藏 ();隐藏和$(“#divid”)。展示 ();显示。
代码如下。
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.