Changing enable field in GUI property inspector
    4 views (last 30 days)
  
       Show older comments
    
How to i change the enable field in the property ispector?
I have a radio button that when pressed, i want it to disable a text box.
this is what i have
set(handles.ions_dir, 'Enable', false)
where ions_dir is the text box i am trying to disable
but it doesnt seem to work. anyone know whats the correct command? thanks
0 Comments
Accepted Answer
  Oleg Komarov
      
      
 on 26 Mar 2012
        set(handles.ions_dir, 'Enable', 'off')
8 Comments
  Oleg Komarov
      
      
 on 26 Mar 2012
				With that much info you gave us it would be impossible to guess what calls what.
I suggest to place a break point in the callback to see if it's called.
More Answers (0)
See Also
Categories
				Find more on Migrate GUIDE Apps in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

