Group: Forum Members
Last Active: 12 Years Ago
Posts: 127,
Visits: 1
|
Hi I got commandbar inserted with dropdownbox. I could not find a way to set default index for this combobox via designer. So it will be a blank box when load.
Have you got some solution? Cheers,
|
Group: Forum Members
Last Active: Last Month
Posts: 139,
Visits: 184
|
Hello JSW W., I guess you are asking about NComboBoxCommand control. You can set the default index as follows: NComboBoxCommand comboCommand = new NComboBoxCommand();comboCommand.HostedControl.SelectedIndex = 0; Regards, Angel.
|