Creating non editable uitable

6 ビュー (過去 30 日間)
Subhiksha
Subhiksha 2013 年 9 月 24 日
Hello,
Is there any way to disable the editable property in uitable. I am using matlab 7.0.1 (R14).
Thanks in advance.

採用された回答

Jan
Jan 2013 年 9 月 24 日
You can check, which properties are available in your version:
h = uitable
get(h)
  1 件のコメント
Subhiksha
Subhiksha 2013 年 9 月 25 日
Thank you.

サインインしてコメントする。

その他の回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 9 月 24 日
編集済み: Azzi Abdelmalek 2013 年 9 月 24 日
h = uitable('Data',data, 'ColumnEditable',false)
If you are using a guide
set(handles.uitable1, 'ColumnEditable',false)
  2 件のコメント
Jan
Jan 2013 年 9 月 24 日
[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.
Jan
Jan 2013 年 9 月 24 日
@Samyuktha: Please post comments in the comment section. Thanks.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeIntroduction to Installation and Licensing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by