How can I keep selection in Table unchanged in appdesigner?

1 次查看(过去 30 天)
i am selecting an indices in a table and wrote functions to move those entities up or down.
I want selected indices to remain same but it is not.
function IMcellSelect_Callback(app, event)
app.input_lb.tbl_indices=event.Indices;
end
.
.
.
%button callback to shift selected content up
function IM_up_Callback(app, event)
updown(app,1,'up');
end
but after doing the operation, old selection changes.
ex.
'row 1 1'
'row 2 2'
'row 3 3'
'row 4 4'
if i select element 4, tbl_indices =[4 2], after moving it up by updown function, selection remains at [ 4 2](which is now element 3), it should change to indices [3 2] (element 4).
how can i fix this issue?

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by