Hey everyone;
I've currently got a button that when selected it sets the selection of a two component pickerview to index zero and then I want it to automatically reload the second column. The code I have is this:
MakeModel.Select(0,0,true); // Select first on left
MakeModel.ReloadComponent(1); // reload right side to available
Unfortunately that's not working. The behavior exhibited is that it moves the left side but doesn't update the right. But if i hit the button again, it then updates the right but thats only if the left is at the 0th index.
Any suggestions/ideas as for why it's behaving this way?
Thanks!