Hi iam trying to add objects into a combobox and use SelectedValue property to select and item in the combobox but it does not work, SelectedValue is still null after the assignment.
class ComboBoxItem
{
string name;
object value;
public string Name { get { return name; } }
...
i want form.load full the comboxcheckboxtree,
but control appearl error message:
this.tree.getRootNode is not a function
[Break on this error] var root = this.tree.getRootNode();
i don't know how to do?
i know it's error,
but i'll how to do?
...
I've got a newbie question about the combo box. The problem I'm having is with the selection changed event I'm binding to it. Here is my Code:
<ComboBox Height="23"
HorizontalAlignment="Left"
Margin="12,67,0,0"
Name="comboBox1"
VerticalAlignment="Top"
Width="1...