I would think that it would be a common request to have the classic Access Style navigation bar, where the user could move to First-Previous-Next-Last-New rows + display the rows count + current row postion + ability to navigate to a specific row number.
Is there such a built-in feature or do I have to build it myself, or perhaps is there HOW TO KB article.
Thanks, Mendel
There's also a BindingNavigator control built-in to the DotNet framework.
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4
Hello Mendel
There is not such build in feature but is easy to implement based on your requirement. The UltraGirid provide easy way to navigate to specific or related to the current element. You can use PerformAction of the grid:
this.ultraGrid1.PerformAction(UltraGridAction.LastRowInGrid, false, false);
You can find more details in online help:
http://help.infragistics.com/NetAdvantage/WinForms/2010.1/CLR2.0/?page=Infragistics2.Win.UltraWinGrid.v10.1~Infragistics.Win.UltraWinGrid.UltraGrid~PerformAction(UltraGridAction,Boolean,Boolean).html
You can implement own control and handle the appropriate button events and bind it to the appropriate action.
Here I found few articles closer to your requirement:
UltraWinGrid as a Navigator
UltraWinGrid Navigating Rows and Cells - Multiple Band
I hope this is helpful.
Sincerely,
Dimi
Developer Support Engineer
Infragistics, Inc.