Hei
Problem:
I have an combobox, and in that combobox I have objects I get from an
database.
in my combobox renderer I see if the objects is active or not.
if (data){
if(data.active != "NULL"){
..
..
..
..
}
}
if it is not active I do the following.
- set a tooltip.
- change label text.
and that works fine, but what I want to do is to also make it not respond to
mouse gestures.
I have tried enabled = false but that dont work, I can make it visible =
false, but thats not realy what I want , so I wounder
How do I make this work? is it even possible with an combobox or do I have
to make a custom combobox?