我正在使用 jqGrid 并希望在调整列宽后保存列宽
我将 resizeStop 事件添加到网格中并被调用,但我需要在会话中保存新的列宽度,然后使用新值来维护用户对列宽度的首选项。当前网格中的分页或重新加载会重置列宽。
这是我到目前为止所拥有的。
resizeStop: function(newwidth, index) {
alert(index + " : " + newwidth);
}
I added the resizeStop event to my grid and it gets called, but I need to save the new column widths in the session and then use the new values to maintain the user preferences for column widths. Currently paging in the grid or reloading resets the column widths.
Here is what I have so far.
resizeStop: function(newwidth, index) {
alert(index + " : " + newwidth);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我明白了。我将所有列宽存储在一个用于保存会话信息的 bean 中的 HashMap 中。当 resizeStop 事件被触发时,我将新的列大小提交给控制器(我使用 Java 和 Spring),该控制器更新 HashMap 中的值。
以下是代码片段:
在 colModel 中:
OK, I got it. I store all column widths in a HashMap in a bean I use to save session info. When the resizeStop event is fired I submit the new column size to a controller (I'm using Java and Spring) which updates the values in the HashMap.
Here are the code snippets:
and in the colModel: