📅  最后修改于: 2023-12-03 14:43:24.003000             🧑  作者: Mango
jQWidgets jqxGrid Horizontalscrollbarstep 是一个用于 jQWidgets jqxGrid 控件的属性,用于设置水平滚动条步长,即拖动水平滚动条时表格视图的水平滚动量。
$("#jqxgrid").jqxGrid({
...
horizontalscrollbarstep: 10,
...
});
属性值可以是任意数字。当值为 n 时,拖动水平滚动条时表格视图的水平滚动量为 n。
$("#jqxgrid").jqxGrid({
source: getSource(),
width: '100%',
height: '400px',
pageable: true,
autoheight: true,
virtualmode: true,
columns: [
{ text: 'Employee Name', datafield: 'EmployeeName', width: '20%' },
{ text: 'Title', datafield: 'Title', width: '25%' },
{ text: 'Birth Date', datafield: 'BirthDate', width: '20%', cellsformat: 'dd-MMM-yy' },
{ text: 'Age', datafield: 'Age', width: '10%' },
{ text: 'Hire Date', datafield: 'HireDate', width: '20%', cellsformat: 'dd-MMM-yy' }
],
horizontalscrollbarstep: 20
});
jQWidgets jqxGrid Horizontalscrollbarstep 属性是控制 jQWidgets jqxGrid 控件水平滚动条步长的重要属性。开发者可以根据实际需求自由设定该属性的值,以获得最佳的表格滑动效果。