Double click callback on a cell in uitable without Java?

10 visualizzazioni (ultimi 30 giorni)
After google-ing for a while, I cannot find a feasible solution to realize the double click callback on a cell in uitable.
Does anyone have a better idea or workaround for this? without java or findjobj.

Risposte (1)

Walter Roberson
Walter Roberson il 7 Set 2015
How about CellSelectionCallback and test the figure SelectionType property for 'open' ?
  2 Commenti
Song
Song il 8 Set 2015
Try following codes:
function test()
f = figure('Position',[200 200 400 150]);
dat = rand(3);
cnames = {'X-Data','Y-Data','Z-Data'};
rnames = {'First','Second','Third'};
t = uitable('Parent',f,'Data',dat,'ColumnName',cnames,...
'CellSelectionCallback', @cbk, ...
'RowName',rnames,'Position',[20 20 360 100]);
function cbk(~, ~)
ty = get(f, 'SelectionType')
end
end
You'll see only normal comes out from the selectiontype.
Stefanie Schwarz
Stefanie Schwarz il 2 Ott 2020
Modificato: Stefanie Schwarz il 2 Ott 2020
In R2020a and ealier, 'SelectionType' was not honorored by UItables; starting from R2020b, the above solution should work.

Accedi per commentare.

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by