以下是关于 jQWidgets jqxTreeGrid 组件中 toolbarHeight 属性的详细攻略。
jQWidgets jqxTreeGrid toolbarHeight 属性
jQWidgets jqxTreeGrid 的 toolbarHeight 属性用于设置组件顶部工具栏的高度。您可以使用此属性来自定义工具栏的高度以应您的应用程序需求。
语法
$('#treegrid').jqxTreeGrid({ toolbarHeight: height });
参数
height
:工具栏的高度,以像素为单位。
示例
以下两个示例演示如何使用 toolbarHeight 属性。
示例 1
// 创建 jqxTreeGrid 组件
$('#treegrid').jqxTreeGrid({
width: 500,
height: 300,
source: dataAdapter,
columns: [
{ text: 'ID', dataField: 'id', width: 100 },
{ text: '名称', dataField: 'name', width: 200 },
{ text: '价格', dataField: '', width: 100 }
],
toolbarHeight: 30
});
在示例 1 中,我们使用 jqxTreeGrid()
方法创建了一个 jqxTreeGrid 组件,并使用 { width: 500, height: 300, source: dataAdapter, columns: [... toolbarHeight: 30 }
设置了组件的宽度、高度、数据源、列和工具栏高度。
示例 2
// 创建 jqxTreeGrid 组件
$('#treegrid').jqxTreeGrid({
width: 500,
height: 300,
source: dataAdapter,
columns: [
{ text: 'ID', dataField: 'id', width: 100 },
{ text: '名称', dataField: 'name', width: 200 },
{ text: '价格', dataField: 'price', width: 100 }
],
toolbarHeight: 50
});
在示例 2 中,我们使用 jqxTreeGrid()
方法创建了一个 jqxTreeGrid 组件,并使用 { width: 500, height: 300, source: dataAdapter, columns: [...], toolbarHeight: 50 }
设置了组件的宽度、高度、数据源、列和工具栏高度。
总之,toolbarHeight 属性可以让您轻松地自定义 jQWidgets jqxTreeGrid 组件顶部工具栏的高度,以适应您的应用程序需求。