Hi All,
I have an ultracomboeditor with some valuelistitems added to it. I am trying to programatically set the comboeditor text area to display one of the list values, i.e. basically select an item in the list, but I can't get it to work. Whenever the combobox loads up first the text area is empty.
I am embedding the combocontrol in an UltraTreeNodeCell so I assume that I am missing some sort of configuration?
Denis
Hi Denis,
If you are using the combo control as an editor in a tree node cell, then the selected item in the combo will be determined by the value in that cell. Setting the Value on the Combo would have no meaning because the combo is servicing multiple cells at once. So you need to set the Value on the tree node cell.
Great, Thanks Mike