tags:

views:

26

answers:

1

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!

A: 

try this

$frm_sat1.c2.lwchildsite.efchildsite.arrowBtn configure -state disabled
tensaix2j
configure is not working for -editable
OliveOne