Sending Data From Screen1 Container A to Screen2
https://support.touchgfx.com/docs/development/ui-development/touchgfx-engine-features/mixins
Hi, I used the documentation here and attempted to get the problem from the title working, but the issue seems to be the clickHandler is not registering the click. I think this is because the container on which I set the ClickListener on is comprised of a flex button, which has its own click interaciton. Is there any way to fix this? I set the clickListener from the screen page, not the container page.
void Formulas1View::formulaClickHandler(const Formula& f, const ClickEvent& evt)
{
if (&f == &formula1)
{
Unicode::UnicodeChar* formulaName = formula1.getFormulaName();
presenter->setEditingFormula(formulaName);
}
}
I ran breakpoints and realized on the button click this was never being hit.
