我正在使用 jqGrid 并希望在调整列宽后保存列宽

发布于 2024-12-02 09:53:06 字数 232 浏览 1 评论 0原文

我将 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 技术交流群。

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

发布评论

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

评论(1

时光暖心i 2024-12-09 09:53:06

好的,我明白了。我将所有列宽存储在一个用于保存会话信息的 bean 中的 HashMap 中。当 resizeStop 事件被触发时,我将新的列大小提交给控制器(我使用 Java 和 Spring),该控制器更新 HashMap 中的值。

以下是代码片段:

resizeStop: function(newwidth, index) {
                var colModel = $("#list").jqGrid('getGridParam','colModel');
                $.post("/sessionState/columnWidth/update",
                    {
                        column: colModel[index].name,
                        width: newwidth
                    }
                )
            }

在 colModel 中:

{name:'Title', index:'title', width: ${uiState.columnWidthMap["Title"]}, jsonmap: 'title', sorttype: "text"}

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:

resizeStop: function(newwidth, index) {
                var colModel = $("#list").jqGrid('getGridParam','colModel');
                $.post("/sessionState/columnWidth/update",
                    {
                        column: colModel[index].name,
                        width: newwidth
                    }
                )
            }

and in the colModel:

{name:'Title', index:'title', width: ${uiState.columnWidthMap["Title"]}, jsonmap: 'title', sorttype: "text"}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文