How to update textArea value in custom container?
Hi all,
I have create a custom container named "tableLine":

And using the "tableLine", I make a "table":

in "tableLine.cpp", I write the following code:
void tableLine::setLineContent(tableItem_t* item)
{
Unicode::snprintf(txtIDBuffer, TXTID_SIZE, "%s", item->ID);
Unicode::snprintf(txtTimeBuffer, TXTTIME_SIZE, "%04x%04x", item->date, item->time);
txtID.invalidate();
txtTime.invalidate();
#ifdef SIMULATOR
touchgfx_printf("setLineContent: %s %04x%04x\n", item->ID, item->date, item->time);
#endif
}And when I click the button "show data", the function "setLineContent()" will be called.
Both of the simulator and the MCU is work well except the table content has NOT display.
The simulator log as below:

I already read and try the tutorial-04 successfully, I think the situation is the same, but why my program can NOT work as my expectation.
Could you help me?
Thanks a lot.

