Delete row in a user-sorted UItable throws error

조회 수: 1 (최근 30일)
Jan Kudlacek
Jan Kudlacek 2022년 1월 11일
편집: Jan Kudlacek 2022년 1월 11일
Dear colleagues
I have a UItable with sortable columns. Users can delete rows which is implemented by deleting a row from the Data property. This seems to replace also the read-only property DisplayData which is correct. However, if the user sorts the table by clicking the sort icon prior to the row deletion, the DisplayData cannot be accessed afterwards. Am I doing something wrong? Try the following code:
function uitableRowDeletion
% Situation A:
% 1. Run the script
% 2. Press delete
% 3. It deletes second row, as it should. Everything OK.
%
% Situation B:
% 1. Run the script
% 2. Sort the data by clicking on the show-up button in the upper right corner of the uitable
% 3. Press delete
% 4. Accessing DisplayData property now results in error
h = findall(0,'type','figure'); close(h); % Close all uifigures
clear;
A = [1 3 2]';
t = table(A);
f = uifigure('WindowKeyPressFcn', @cbKey);
uit = uitable(f, 'Data', t, 'ColumnSortable', true);
% Nested callback function, deletes hard-coded second row
function cbKey(~, evt)
if strcmp(evt.Key, 'delete')
uit.Data(2, :) = [];
disp(uit.DisplayData)
end
end
end
Thank you for any ideas.
Jan Kudláček
  댓글 수: 2
Jan
Jan 2022년 1월 11일
Please mention the Matlab version you are using and post the error message you get.
Jan Kudlacek
Jan Kudlacek 2022년 1월 11일
R2019b
Error using matlab.ui.internal.controller.uitable.WebMWTableController.createDisplayData (line 607)
Row index exceeds table dimensions.
Error in uitableRowDeletion/cbKey (line 25)
disp(uit.DisplayData)
Error using matlab.ui.internal.controller.FigureController/handleEvent (line 362)
Error while evaluating Figure WindowKeyPressFcn.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by