Hai ..
I need to remove all empty rows in my ultragrid on Action 'Save'. What are all the events would be advisable to remove empty row. Also how to find whether the selected row is empty or not.
It depends what you mean by "empty". I assume this means that all of the values in all of the cells of the row are null or DBNull or maybe string.Empty.
There's nothing build-in to the grid to automatically detect these. You would have to loop through the grid's Rows and then the Cells in each row and check each cell individually.
Thank u Mike..
I Worked on it.. n Got the solution..
Thank u very much.