📅  最后修改于: 2023-12-03 14:43:23.507000             🧑  作者: Mango
jQWidgets jqxGrid 是一个基于jQuery和AngularJS的高度可定制的数据网格控件。它具有强大的数据透视功能和支持无限滚动,分页,排序等功能。
其中,altrows 属性是 jqxGrid 控件的一个属性,它可以用来控制网格行的交替背景色。当 altrows 属性为 true 时,jqxGrid 会将每隔一行的背景色设置为指定的交替颜色。
$('#Grid').jqxGrid({
altrows: true,
altstart: 1,
altstep: 1,
altcolor: '#EEEEEE'
});
$('#Grid').jqxGrid({
width: 850,
source: dataAdapter,
columnsresize: true,
sortable: true,
pageable: true,
autoheight: true,
altrows: true,
altstart: 1,
altstep: 1,
altcolor: '#EEEEEE',
columns: [
{ text: 'First Name', datafield: 'First Name', width: 150 },
{ text: 'Last Name', datafield: 'Last Name', width: 150 },
{ text: 'Product', datafield: 'Product', width: 180 },
{ text: 'Quantity', datafield: 'Quantity', width: 80, cellsalign: 'right' },
{ text: 'Price', datafield: 'Price', width: 90, cellsalign: 'right', cellsformat: 'c2' },
{ text: 'Total', datafield: 'Total', width: 100, cellsalign: 'right', cellsformat: 'c2' }
]
});