App Designer: How can I select multiple options in a list box without using control button?
19 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Requirements:
- control button should not be used to select multiple options.
- alternative solution of implementing checkboxes: how can i implement it?
0 Commenti
Risposte (1)
Abhilash Padma
il 2 Gen 2020
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 Commento
APURAV GUPTA
il 28 Lug 2020
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.
Vedere anche
Categorie
Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!