Can anyone tell me how to force the ultragrid to display row 0 after I apply my grid filter?
I have tried these with no success--
ultragrid1.DisplayLayout.ActiveRow = ultragrid1.Rows(0)
ultragrid1.ActiveRow = ultragrid1.Rows(0)
ultragrid1.Rows(0).Activate()
ultragrid1.ActiveRow = ultragrid1.GetRow(Infragistics.Win.UltraWinGrid.ChildRow.First)
I would think a PerformAction to something like the FirstGridCell or something along those lines would do it.
Nick
Nick,
thanks for the tip. i thought that would work, but it did not.
I think it must have something to do with the filters being applied.
After I apply the filters I do this - ultragrid1.PerformAction(UltraGridAction.FirstRowInBand).
But the grid always ends up at the bottom of the grid.
I am still looking for a solution.
-duane