Hello!
Is it possible not to close dropdownlist panel when I select some items?
For example, I have smth like treeview (not true treeview, but imagine):
Master Item:
item1
item2
item3
and so on.
For now I use the following code:
Selected text(index) doesn't change, but it would be more convinient
and elegant if dropdownlist panel won't close if I select "Master Item:".
Is it possible?
Thanks in advance.
Is it possible not to close dropdownlist panel when I select some items?
For example, I have smth like treeview (not true treeview, but imagine):
Master Item:
item1
item2
item3
and so on.
For now I use the following code:
if
(e.Position == 1)//Master item position == 1.
{
e.Cancel =
true
;
return
;
}
...
Selected text(index) doesn't change, but it would be more convinient
and elegant if dropdownlist panel won't close if I select "Master Item:".
Is it possible?
Thanks in advance.