Hi all,
What is the best method to updating the stylesheet for a specific row that has been edited? I have code that updates the editing core for a given web data grid. It adds a drop-down selector for one column, check box for another and a text box for the final column. When I modify any entry in a row, I wanted it to highlight the row in some way? As Auto-CRUD is off, I tried to add the RowUpdating event to the editing core, but I get a NullReferenceException on that line of code. I thought I could use that event to alter the CSS style for the ROW through code-behind, but that is not working?
Any help? I tried to use a RowEditTemplate, but that is not working for me either. I have to define the web data grid editing functions in code behind because the grid is multi-purpose and loads the data dynamically through code-behind, but in one case, the grid ends up being editable.
Help is appreciated.
Paul
Hello Paul,
Thank you for contacting Infragistics!
I have some questions concerning this matter.
Are you using batch updating? What is the style/class name you are using to apply the style?
If you have batch updating enabled you can just modify the igg_UpdatedRow style in the ig_dataGrid.css.
Batch Updating is not enabled, I think. will double-check. The style/class name I would like to apply was a custom-add which has a background-color to a TR tag. in ig_grid.css
What does batch updating do? I would like users to be able to update the data in the grid and then hit a "save changes" button which would then cycle through all the updates and update them in the DB.