octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #65873] uitable dropdowns not editable anymore


From: INVALID.NOREPLY
Subject: [Octave-bug-tracker] [bug #65873] uitable dropdowns not editable anymore
Date: Tue, 11 Jun 2024 09:52:00 -0400 (EDT)

URL:
  <https://savannah.gnu.org/bugs/?65873>

                 Summary: uitable dropdowns not editable anymore
                   Group: GNU Octave
               Submitter: mspo
               Submitted: Tue 11 Jun 2024 01:52:00 PM UTC
                Category: Octave Function
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: None
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
                 Release: 9.2.0
         Discussion Lock: Any
        Operating System: Microsoft Windows
           Fixed Release: None
         Planned Release: None


    _______________________________________________________

Follow-up Comments:


-------------------------------------------------------
Date: Tue 11 Jun 2024 01:52:00 PM UTC By: Anonymous
I just noticed with the latest Octave version that editing dropdown cells in
uitables stopped working with Octave 9.2.0. The celleditcallback is not called
for this cell type. Other cell types are fine - although I didn't test all of
them. It still worked with Octave 9.1.0. I work with Windows 10 22H2.

Here is a reproducible example (Try changing a numeric cell and a dropdown):


uitable('data', [{1;2}, {'B'; 'A'}], 'columnformat', {'numeric', {'A'; 'B'}},
'columneditable', true, 'cellselectioncallback', @(obj, event)
myselection(obj, event), 'celleditcallback', @(obj, event) myedit(obj,
event));

function myselection(obj, event)
  disp('cell selected: ')
  disp(event)
end

function myedit(obj, event)
  disp('cell edited: ')
  disp(event)
end









    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?65873>

_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]