📅  最后修改于: 2023-12-03 15:32:21.200000             🧑  作者: Mango
jqxTreeGrid是一个强大的jQuery表格插件,在处理大量数据时非常有用。toolbarHeight属性是jqxTreeGrid控件中的一个可选属性,它用于设置表格顶部工具栏的高度。
$('#treeGrid').jqxTreeGrid({
toolbarHeight: 40
});
$('#treeGrid').jqxTreeGrid({
width: '100%',
height: '100%',
columns: [
{ text: 'ID', dataField: 'id', width: '20%' },
{ text: 'Name', dataField: 'name', width: '30%' },
{ text: 'Age', dataField: 'age', width: '20%' },
{ text: 'Address', dataField: 'address', width: '30%' }
],
toolbarHeight: 40,
source: dataAdapter
});
toolbarHeight属性是jQWidgets jqxTreeGrid控件中的一个非常有用的属性,在设置表格顶部工具栏时非常有用。