Hi Team,
I am using Infragistics v16.1 to create a Web Data Grid.On Button Click, i am doing some client side validation and changing the color of the cell.But after user correct those cell's values and button click wants to make those cell's color to default color.
So how can I change the grid's all cell color to some specific color in client side?
Thanks!
Rajesh
Thanks! Radoslav Karaivanov,
It resolves my problem.
Cheers,
Hello Rajesh,
Thank you for contacting Infragistics Developer Support!
You can attach a client-side javascript handler on the button onclick event.
function handler() { var grid = $find(''); grid.get_rows().get_row(0).get_cell(0).get_element().style.backgroundColor = value; }
If you have selection/activation behaviors you can use those to retrieve the cell you're interested in.
Feel free to contact me for further information.