Creating non editable uitable

Hello,
Is there any way to disable the editable property in uitable. I am using matlab 7.0.1 (R14).
Thanks in advance.

 Accepted Answer

You can check, which properties are available in your version:
h = uitable
get(h)

More Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 24 Sep 2013
Edited: Azzi Abdelmalek on 24 Sep 2013
h = uitable('Data',data, 'ColumnEditable',false)
If you are using a guide
set(handles.uitable1, 'ColumnEditable',false)

2 Comments

[MOVED from answer section] Samyuktha wrote:
I already tried it and got the following error:
Error using ==> uitable Unrecognized parameter: ColumnEditable
I guess Matlab 7.0.1 (R14) doesn't have this property...this version doesn't even have the 'Data' as a property.
@Samyuktha: Please post comments in the comment section. Thanks.

Sign in to comment.

Categories

Find more on App Building in Help Center and File Exchange

Asked:

on 24 Sep 2013

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!