I am binding my data in a datatable and then bind that datatable into a datagrid. I want that some rows of the datatable should be highlighted with some color. How can we do that from code-behind?
feedback
|
|
You need to hook into the ItemDataBound event of the DataGrid, in order to dynamically set the properties you desire. On your HTML, set the OnItemDataBound attribue of the DataGrid to a server-side event.
Then wire-up the server-side event handler:
You could then flip the colors based on the ListItemType enumeration:
| ||||
|
feedback
|
|
You could use the following code snippet to color the rows of the grid:
You can now place a condition in the
Or, as mentioned in RPM1984's answer, you could also attach yourself to the ASPX:
Code-behind:
Regarding the coloring of the invoices and receipts, you could use the following code snippet to achieve what you want, assuming that you're adapting the approach of using the Code-behind:
| ||||
|
feedback
|
|
You have to add in your Tag ASP an event OnDatabound: You need to TAG the event Datarow binding with this
and in the code-behind specify action for the event:
You can specify in the code a css class or simply modify the color of the row..
| |||||
feedback
|