Multiple check boxes to check to provide an output

47 ビュー (過去 30 日間)
Muhammad Abir
Muhammad Abir 2020 年 8 月 17 日
コメント済み: Noah 2024 年 4 月 3 日 7:24
I have 6 checkboxes with 6 different conditions to run a query. User will select any number of check boxes (may be only 1 or may be all 6 or may be only 3 checkboxes). For example, let's say if user selects checkbox 1 and checkbox 2, then by selecting a 'search' pushbutton, the result will show one output or if user selects all checkboxes then the search will shows a different output.
  1 件のコメント
Mehmed Saad
Mehmed Saad 2020 年 8 月 17 日
what have you done so far?
Show us your code

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

採用された回答

Prabhanjan Mentla
Prabhanjan Mentla 2020 年 8 月 20 日
編集済み: Prabhanjan Mentla 2020 年 8 月 20 日
Hi,
I assume that on selecting the combinations checkboxes the text should vary, on clicking a button.
For accessing the checkbox values, you may code something like below
function ButtonPushed(app, event)
fieldNames = fieldnames(app); % get the uicomponents
allCheckBoxNamesList = fieldNames(contains(fieldNames,'CheckBox','IgnoreCase',true)); % get the checkboxes
for i = 1:numel(allCheckBoxNamesList) % loop through all checkboxes
if app.(allCheckBoxNamesList{i}).Value == true % display all the checkboxes which are true
app.TextArea.Value = [string(app.TextArea.Value);app.(allCheckBoxNamesList{i}).Text;] % append to Text Area
end
end
You may get something like below
Hope this helps.
  2 件のコメント
Noah
Noah 2024 年 4 月 3 日 7:22
To get a more "generic" answer - you can use "findall" method to catch all checkboxes @ once
% --- Executes on button press in pb_search.
function pb_search_Callback(hObject, eventdata, handles)
hCheckboxes = findall(handles.output,'Style','checkbox'); % Get all checkboxes inside a container
hCheckboxes_selected = findall(hCheckboxes,'Value',1); % Get all Selected checkboxes from the above collection
strings = get(hCheckboxes_selected,'String'); % Get all the text from the Selected checkboxes
if ~isempty(strings) && iscell(strings)
strings = strjoin(strings,' ,');
end
handles.ed_search.String = strings;
Noah
Noah 2024 年 4 月 3 日 7:24
of course, you can enter as the 1st input to "findall" a more specific container (a panel) that holds the relevant checkboxes...

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEntering Commands についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by