📅  最后修改于: 2023-12-03 15:02:19.309000             🧑  作者: Mango
headerWidth 是 jQWidgets jqxKanban 组件中的一个属性,用于设置看板列的标题栏宽度。
headerWidth: string | number
$("#jqxKanban").jqxKanban({
// 其他配置项...
columns: [
{ text: "待办", dataField: "todo", headerWidth: 80 },
{ text: "进行中", dataField: "inProgress", headerWidth: "10rem" },
{ text: "已完成", dataField: "done", headerWidth: "8em" }
]
});
上述示例中,分别设置了三个列的标题栏宽度。第一个列的宽度为 80 像素,第二个列的宽度为 10 个 em,第三个列的宽度为 8 个 em。