Hi,
I use the following function to copy selected grid rows.
_ultraGrid.PerformAction(UltraGridAction.Copy, false, true);
I now use CreationFilter to create a CheckBox at everyRow as I want the user to check certain rows to perform an action. Is there anyway I can copy CheckedRows instead of SelectedRow which the above function does.
Thanks
Sangeetha
Hi Sangeetha,
The easiest thing to do would be to simply select all of the checked rows, then call the PerformAction method. Then, if you want, you could unselect all the rows.
Thanks Mike. I was hoping not to select checked rows. But I guess like you said the simplest way to do it.
Apart from this... Can Copy copy hierarchy data or only just data rows?
Than You Mike.
You can't select rows across bands different bands, so there's no way to copy data across bands, either. You could, of course, populate the clipboard yourself with whatever text you want.