App Designer: How can I select multiple options in a list box without using control button?

42 次查看(过去 30 天)
Requirements:
  • control button should not be used to select multiple options.
  • alternative solution of implementing checkboxes: how can i implement it?

回答(1 个)

Abhilash Padma
Abhilash Padma 2020-1-2
If you don’t want to use control button to select multiple options, you can use checkboxes in table to achieve what you wanted to do. Use a table in app designer with two columns where the first column contains the list items and second column contains the checkboxes. You can use the startupFcn callback of UIFigure to initialize the table values.
See the code below where I have initialized the table values:
function startupFcn(app)
app.UITable.Data = [{'a',false};{'b',false};{'c',false}];
end
Then, you can use the CellEditCallback of UITable which will be triggered when the value in table is changed. So, when you check or uncheck the checkbox. This callback will be triggered. Add a property which maintains the list of all items which have its respective checkbox checked.
See the following code which contains code to add/remove the items from the list of selected items. ‘SelectedItems’ is a property which stores the list of selected items. It is initialized as an empty cell array.
function UITableCellEdit(app, event)
indices = event.Indices;
newData = event.NewData;
if newData
app.SelectedItems(end+1)=app.UITable.Data(indices(1),indices(2)-1);
else
app.SelectedItems(ismember(app.SelectedItems,app.UITable.Data(indices(1),indices(2)-1))) = [];
end
end
  1 个评论
APURAV GUPTA
APURAV GUPTA 2020-7-28
It is giving an error: Conversion to double from cell is not possible for the line
app.SelectedItems(end+1)=app.UITable.Data(indices(1),indices(2)-1);
Can you please help me resolve it.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by