Hi Alessandro, I have question here. What if I want only certain items to be display (something like grouping)?
For example if the data pushed contains item1,item2,item3; and I want only item1 and item3 to be display. Can it be done in this way? How to do it?

Is it I have to subscribe an item group to the table:
var group = "item1 item3";
var table = new NonVisualTable(group, schema, "COMMAND");
table.setSnapshotRequired(true);

table.onItemUpdate = myUpdateHandler;
lsPage.addTable(table, "info");
Please correct me if I'm wrong. Thanks.