Created
April 18, 2011 22:36
-
-
Save iraSenthil/926418 to your computer and use it in GitHub Desktop.
UltraWinGrid ActiiveRow default selection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void LoadGrid(List<ViewModel> viewModels) | |
{ | |
bindingSource.Clear(); | |
foreach (var model in viewModels) | |
bindingSource.Add(model); | |
} | |
void LoadGrid(List<ViewModel> viewModels) | |
{ | |
bindingSource.Clear(); | |
foreach (var model in viewModels) | |
bindingSource.Add(model); | |
//Makes no diffrence | |
ultraWinListGrid.ActiveRow = null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment