Right click to remove row(s) from uitable - example code is not working
4 次查看(过去 30 天)
显示 更早的评论
Hi! I'm trying to use context menu to enable row removing from uitable by following an example here:
function tableApp
fig = uifigure;
tbl = uitable(fig);
tbl.Position = [20 20 400 300];
tbl.Data = randi(10,[10 4]);
cm = uicontextmenu(fig);
m = uimenu(cm);
m.Text = "Delete Row";
tbl.ContextMenu = cm;
m.MenuSelectedFcn = @deleteRow;
cm.ContextMenuOpeningFcn = @(src,event)toggleVisibility(src,event,m);
end
function deleteRow(src,event)
tbl = event.ContextObject;
row = event.InteractionInformation.Row;
tbl.Data(row,:) = [];
end
function toggleVisibility(src,event,m)
row = event.InteractionInformation.Row;
rowClicked = ~isempty(row);
m.Visible = rowClicked;
end
However, I run into this problem:
>> tableApp
Unrecognized method, property, or field 'InteractionInformation' for class 'matlab.ui.eventdata.ActionData'.
Error in tableApp>toggleVisibility (line 23)
row = event.InteractionInformation.Row;
Error in tableApp>@(src,event)toggleVisibility(src,event,m) (line 13)
cm.ContextMenuOpeningFcn = @(src,event)toggleVisibility(src,event,m);
Error using matlab.ui.internal.WebContextMenuController/handleEvent
Error while evaluating ContextMenu Callback.
0 个评论
采纳的回答
Walter Roberson
2023-10-11
Which release are you using? Some of that is only applicable to R2023b and later; https://www.mathworks.com/help/matlab/ref/uicontextmenu.html?searchHighlight=uicontextmenu&s_tid=srchtitle_support_results_1_uicontextmenu#mw_c3c8080d-01ad-48ab-9c13-416405690017
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!