Hi, I’m working on a ListView object already populated changing the text value of the selectedItem like
list.selectdItem.text = 'new text';
The value is indeed changed and after any interaction with the list the new text is correctly shown, but not before that. Is there a way to force the list render to update without the need to interact with it? I tryed to call list.validateNow() after the change but this seems to only adjust the size, not the display itself.