I have a uitable with a ChoiceList. Is there a way to add to the ChoiceList selections other than manually using the guide?
1 次查看(过去 30 天)
显示 更早的评论
I have a uitable with four columns. Each column is a ChoiceList with three choices avaliable i.e. "red","blue","green". Is there a way to add more choices to each ChoiceList via matlab script or is the only way using the guide and manually putting them in the ChoiceList?
0 个评论
回答(1 个)
Walter Roberson
2013-2-14
Approximately like this:
curdata = get(handles.uitable, 'data');
for K = 1 : size(curdata, 1)
curstring = curdata{K, 3); %for column 3
curstring{end+1} = 'yellow'; %adding yellow as a choice
curdata{K,3} = curstring;
end
set(handles.uitable, 'data', curdata)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!