Having a bit of trouble accessing items client side after transitioning to the Prometheus version of the grid.
Before I could do this:
function LookupGrid_OnRowOver(row) {
this.Rows[row].Control.style.backgroundColor = '#CCCCCC';
}
Now, using Prometheus I change to:
function LookupGrid_OnRowOver(sender, e) {
but I can't seem to access the ROW. The client side docs indicate that "sender" should be the DataItem - but it appears to be the grid itself.
Any advice?
Before I could do this:
function LookupGrid_OnRowOver(row) {
this.Rows[row].Control.style.backgroundColor = '#CCCCCC';
}
Now, using Prometheus I change to:
function LookupGrid_OnRowOver(sender, e) {
but I can't seem to access the ROW. The client side docs indicate that "sender" should be the DataItem - but it appears to be the grid itself.
Any advice?