How to sort string in a list of edit box based on a toggle buttons for each of them?
2 ビュー (過去 30 日間)
古いコメントを表示
I am currently working on a creating a to-do list and I am stuck on sorting my values and strings of other uicontrols. I created a list of edit boxes with GUIDE and each of them has a toggle box for importance, checkbox and due date entry. When the user pushes it down it just identifies that the correlating edit box and etc are important. I want to be able to sort this information. Such as, if there are multiple toggle boxes pushed down, I want them to be moved to the top of the list. So basically, I need to swap the information between the top ones that are not toggled between the ones toggled.
I have attached a picture of what the guide looks like below:
2 件のコメント
Stephen23
2017 年 4 月 9 日
編集済み: Stephen23
2017 年 4 月 9 日
+1 for using a sensible date format!
Question for clarity: you have multiple sets of "Entry" + "Due Date" + button + check box, and you want to physically rearrange their order based on the button status?
This is certainly possible, but would not be a typical action.
採用された回答
Walter Roberson
2017 年 4 月 9 日
Create four vectors of handles, one for Entries, one for Due Date, one for the toggle buttons, one for the check boxes.
get() the String properties of the Entries vector, and Due Date vector, and get() the Value properties of the toggle buttons vector, and check boxes vector. This will give you cell arrays.
Convert the Value cell array to matrix. sort() with 'stable' property, returning the indices as well as the values.
Index the other cell arrays at the indices returned by the sort(), getting out cell arrays that have been re-ordered according to the Important property.
set() the String properties of the Entries handles to the adjusted cell array, likewise for Due Date; likewise set() the Value properties of the other two vectors as appropriate.
7 件のコメント
Walter Roberson
2017 年 4 月 10 日
EntryEditsVString = get(EntryEditsV, {'string'});
DueDateEditsVString = get(DueDateEditsV, {'string'});
ImportantTogglesVValue = get(ImportantTogglesV, {'value'});
CheckboxesVValue = get(CheckboxesV, {'value'});
... now do the sorting, producing IndexC. Then
ReorderCheckboxes = CheckboxesVValue(IndexC);
ReorderEntryEdits = EntryEditsVString(IndexC);
ReorderDueDateEdits = DueDateEditsVString(IndexC);
ReorderImportantToggles = ImportantTogglesVValue(IndexC);
set( DueDateEditsV, {'String'}, ReorderDueDateEdits);
set( EntryEditsV, {'String'}, ReorderEntryEdits);
set( CheckboxesV, {'Value'}, ReorderCheckboxes);
set( ImportantTogglesV, {'Value'}, ReorderImportantToggles);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!