Using javascript, how would i change the color of the text of the selected row of a webdatagrid. If the text is white I want to change it to black when the user clicks on the row to select it. The webdatagrid allows for multiple rows to be selected. Thank you.
Hello,
I am following up to see if you have any further questions with this matter.
Update me if any further assistance needed.
Thanks,
Bhadresh
To change the color of the text of the selected row you may set CSS class of selected cell as follows:
<ig:Selection RowSelectType="Multiple" CellClickAction="Row" SelectedCellCssClass="rowcolor" >
.rowcolor { color:Lime !important; }
The above class will change the cell color of the selected row to lime color.
Hope this helps.