.disablecheckbox {
pointer-events: none;
opacity: 0;
}
|
td.e-rowcell.e-selectionbackground.e-active,
td.e-detailrowcollapse.e-selectionbackground.e-active,
td.e-detailrowexpand.e-selectionbackground.e-active {
background-color: transparent;
}
.tax-agent-pending-status,
td.e-rowcell.e-selectionbackground.e-active.tax-agent-pending-status {
background-color: #008AD0;
}
.tax-agent-accepted-status,
td.e-rowcell.e-selectionbackground.e-active.tax-agent-accepted-status {
background-color: #F7A46B;
}
.broker-rejected-status,
td.e-rowcell.e-selectionbackground.e-active.broker-rejected-status {
background-color: #D81A32;
}
|
var grid = new ej.grids.Grid({
dataSource : {},
height: 400,
allowExcelExport : true, |
grid.actionComplete = function (args) {
if (args.requestType === 'sorting') {
setTimeout(function(e) {
// after a certain time delay move the focus again to the header element
grid.element.scrollIntoView()
}, 0)
}
}; |