Hi,
I have GroupTable with list of some entities. Entity is KeyValueEntity, so I have list of KeyValueEntity in a table. How to update some row on event?
I’m truing to build table which is updated in real time. I have global event which is fired every time when user change some entity.
To update data on the UI, try to update it in the data container that is used by your GroupTable. So, when you get an updated entity, invoke myKeyValueDc.replaceItem(updatedEntity) this will update all the UI elements bound to the container.