Need interface suggestions on how best to let the user reorder a list of objects.

조회 수: 3 (최근 30일)
I have created an app in app desginer where i have a list of objects as following
They are created form a table that holds all the values and graphic, but also a Order number and ID
I have touble finding a good solution to how I let the user change the order (moving one line of objects above or below a another)
Any suggestions are welcome.
Best JC
  댓글 수: 1
Johan C
Johan C 2021년 8월 11일
Here some of the things i have been looking at.
Pull and drop - not in matlab it seems
Two buttons beside each line, move one step up or down - many clicks to move a line far.
uicontextmenu - cant find what object line that evoke the called to create the menu when needed on right click and button that on left click opens the context menu cant place it next to it as I cant find the posstion of the button with scroll enable.

댓글을 달려면 로그인하십시오.

채택된 답변

Jasmine Poppick
Jasmine Poppick 2021년 8월 13일
Hi Johan, you mentioned looking into using a context menu to provide options to reorder the rows in your app. This could work using the CurrentObject property of the UI figure, which stores the most recently clicked object in the figure.
For example, you can add this code to the MenuSelectedFcn callback of the relevant menu item to store the component that was right-clicked to bring up the context menu, and then use that info to rearrange the order:
selected = app.UIFigure.CurrentObject;
  댓글 수: 5
Johan C
Johan C 2021년 8월 16일
Hi again Jasmine.
It worked! :-) after updateing to version 2021a.
On the negativ side, updating to 2021a gave new problems as a function i called many times now gives an error "Undefined function 'insertText'".
Best Johan

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by