如何在 jqGrid 的顶部和底部获得导航器
我想在 jqGrid 的顶部和底部都有一个导航器。我尝试在网格和寻呼机上使用cloneToTop 属性。它克隆元素但不应用正确的样式(使用 FireBug 检查发现缺少 ui 样式)。任何帮助表示赞赏。
I'd like to have a navigator on both the top and bottom of the jqGrid. I have tried using the cloneToTop property on the grid and on the pager. It clones the elements but does not apply the correct styles (inspecting with FireBug reveals missing ui- styles). Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
参数
cloneToTop
的使用是正确的方法。查看此处,这是问题。它确实不完全符合您的要求,但它显示了cloneToTop如何工作以及如何修改cloneToTop产生的一些结果。您在顶部导航器的元素(哪个元素?)上错过了哪些样式,而您可以在底部导航器上看到哪些样式?
一般来说,
cloneToTop
使用非常简单的 jqGrid 函数。您可以使用 jQuery.appendTo 将任何元素从一个导航栏移动到另一个导航栏。在其他 我的答案 您可以找到此类移动的示例(情况不完全适合您的情况,但所有工作方式都相同)。The usage of the parameter
cloneToTop
is the correct way. Look at here which is example from the answer on the question. It do of case not exactly what you ask, but it shows howcloneToTop
work and how one can modify some results produced bycloneToTop
.Which styles you miss on the elements (which element?) of the top navigator, which you can see on the bottom navigator?
In general
cloneToTop
use very easy jqGrid functions. You can use jQuery.appendTo to move any element from one navigation bar to another one. In other my answer you can find an example of such movement (of case not exactly for you case, but all work in the same way).