Place a pushbutton on uitable to display new input data
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How to create a pushbutton programmatically in an editable uitable to refresh the newly input data. I have this sample code,
f = figure('Position',[700 200 240 100],'Name','Derated');
t = uitable(f);
t.ColumnName = {'Rating(MW)','FOR/State Probability'};
t.RowName = [];
t.Data = [0 0; 0 0; 0 0];
t.Position(3) = t.Extent(3);
t.Position(4) = t.Extent(4);
t.ColumnEditable = [true true];
disp(t.Data)
0 Kommentare
Akzeptierte Antwort
KL
am 19 Nov. 2017
set the ColumnEditable property true
t.ColumnEditable = [true true];
and place a pushbutton on the figure and use its callback to get the new data,
newData = get(t,'Data');
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!