Replies: 3 comments 6 replies
-
Are we talking about just List menu items here? That may make sense thinking about it, these don't really have the concept of editing per se, but really it's a bug, as even changing to a new sub menu creates both an end and start event. I'll need to take a look at this in more detail. |
Beta Was this translation helpful? Give feedback.
-
Cool, thanks, let me know what you found. Cause currently those are the
only ways I know on how to react to clicking on them to save to rom
…On Fri, May 12, 2023, 19:28 Dave Cherry ***@***.***> wrote:
Are we talking about just List menu items here? That may make sense
thinking about it, these don't really have the concept of editing per se,
but really it's a bug, as even changing to a new sub menu creates both an
end and start event. I'll need to take a look at this in more detail.
—
Reply to this email directly, view it on GitHub
<#352 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADGP5MGXPUATOMSO4CSXNODXFZQKXANCNFSM6AAAAAAX7RKCZQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
I think the function for this that should have been exposed was ' void setupForEditing(MenuItem* item);' on menuMgr but it was protected. I've made it public now, and I think in 4.0 that will work. |
Beta Was this translation helpful? Give feedback.
-
so i'm to create a menu of countries and cities
where the countries menu get populate from a JsonDocument
and cities menu will also be populated from a JsonDocuemnt based on the selection of country
both selections will be stored on eeprom upon user simply clicking on the selected country and/or selected city
both countries and cities are using RuntimeMenuItems , and there are about 200 countries
and each city list can also reach upto 200 entries
while i'm aware i cannot call eeprom save on fn_invoke, i can't seem to find a method that would triggered once for a RunTimemenu selection.
neither onCommit or observer class methods are being used when i actually click on RuntimeMenuItem itself
Beta Was this translation helpful? Give feedback.
All reactions