Jquery表排序器与分页器的单元格高度问题
jquery 表排序器和分页器插件有问题。
一切正常,但如果我有一个“描述”列,并且它比其他单元格大(动态扩展),我怎样才能让分页器插件粘在新表格的底部?
我的代码现在在家里,但这里是 2 个代码一起的示例。
http://tablesorter.com/docs/example-pager.html
在该示例中,假设每个“100”都表示为“100,这是大量额外的写入,最终将环绕到此表中某些条目中的新行”
我是否必须使每个单元格都均匀大? (因为有些可能比其他的大)谢谢
Having a problem with jquery table sorter and pager plugin.
All works fine, but if i have say a 'description' column, and it's larger than the the other cells (expands dynamically) how can i get the pager plugin to stick to the bottom of the new table?
My code is at home right now, but here is a sample of the 2 together.
http://tablesorter.com/docs/example-pager.html
In that example, say every '100' is denoted as "100 and this is alot of extra writing that will eventually wrap around to a new row within certain entries in this table"
Do i have to make every cell uniformly big? (cause some may be quite bigger than others) thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.tablesorterPager({ 容器: $("#pager"),positionFixed: false });
将假改为真
.tablesorterPager({ container: $("#pager"), positionFixed: false });
Change false to true