gpt4 book ai didi

jquery - 设置默认 colModel

转载 作者:行者123 更新时间:2023-12-01 04:11:20 24 4
gpt4 key购买 nike

使用JQGrid,是否可以设置默认的colModel以防止重复代码?例如代替

colModel:
[
{name:'name',index:'name',width:80,align:center},
{name:'license',index:'license',width:80,align:center},
{name:'birthday',index:'birthday',width:80,align:center}
]

我们可以将 width:80align:center 设置为默认值,然后执行

colModel:
[
{name:'name',index:'name'},
{name:'license',index:'license'},
{name:'birthday',index:'birthday'}
]

最佳答案

是的,这很有可能。查看jQGrid的这个选项:cmTemplate

基本上,您可以定义希望 colModel 使用的任何默认属性。

例如,我们将每列的默认宽度设置为80,并将对齐方式设置为center:

$('#myGrid').jqGrid({
cmTemplate: {
width: 80,
align: 'center'
},
// the rest of your jqgrid setup here
});

现在,在您的 colModel 中,每列的默认宽度为 80,并且居中 对齐。当然,如果需要,您可以在给定列中覆盖刚刚设置的默认值。

关于jquery - 设置默认 colModel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20086680/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com