希望有人可以提供帮助。
我在将 JQWidgets Grid (JqxGrid) 加载到 JQueryUI 选项卡小部件时遇到了一些问题。每当我将网格宽度设置为百分比值时,它似乎都会将其更改为像素值。例如,100% 的宽度被转换为 100px。现在我知道以前版本的 JqxGrid 和 JqxTab 组件存在类似的问题,并且已经解决,但不幸的是,此时我无法更改我的选项卡小部件。如果有人知道如何解决此问题,我们将非常感谢您的帮助。
谢谢
这是我的代码:
$("#studentgrid").jqxGrid({
width: '100%',
source: studentAdapter,
theme: theme,
filterable: true,
sortable: true,
pageable: true,
autoheight: true,
altrows: true,
enabletooltips: true,
autoshowfiltericon: true,
groupable: true,
columns: [
{text: 'Programme / Unit', datafield: 'student_unit', width: '30%'},
{text: "Involvement Type", datafield: 'student_type', width: '30%' },
{text: 'Student Count', datafield: 'student_count', width: '20%' },
{text: 'Student Level', datafield: 'student_level', width: '20%' }
]
});