I was trying to use iwidgets in some GUI and I want to make combobox non-editable. As per activetcl documentation, the -editable
option is mentioned for combobox and yet it is not working.
combobox $frm_sat1.c2 \
-textvariable [itcl::scope type] \
-state normal -entries {"1 opt" "2 opt"} -editable 0;
help me!