本文介绍了JQGrid列自动宽度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只是想知道如何将jqGrid列宽设置为auto?

I am just wondering how can we set a jqGrid column width to auto?

...
colModel: [
{ name: 'MyDescription', index: 'description', align: 'left', width: 150, sortable: false },
...

对于上述声明,我如何为列指定自动宽度,以使其适合其中最大内容的大小.

for the above statement how can I specify an auto width for the column so that it fits to the size of the maximum content in it.

推荐答案

无法在jqGrid中指定自动宽度列.但是,您可以将网格的rinkleToFit选项设置为true并设置一些近似的宽度值(例如20、20、20、80),并且列的宽度将缩放为网格的宽度.

There are no way to specify autowidth column in jqGrid. But you can use shrinkToFit option of a grid set to true and set some approximate width values (e.g. 20, 20, 20, 80) and width of columns will be scaled to width of a grid.

shrinkToFit:

shrinkToFit:

这篇关于JQGrid列自动宽度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 07:07