Hi,

In my assumption, I want to directly receive the data from server without throught the Table. That is to say, I just want to handle the original data from sever and undefine the schema and group. Is this a logical assumption? If yes, how can I capture the server map data without the schema and group?

I puerilely wrote the following test code:

/////////////////////////////////////////////////////////////////////
var myTable = new NonVisualTable("","","MERGE");//Empty the group and schema
myTable.setSnapshotRequired(true);
myTable.onItemUpdate = function(item, itemUpdate) {
......
}
lsPage.addTable(myTable,"test");
/////////////////////////////////////////////////////////////////////

The test result is failed as my forecast.

Is there any other ways for this assumption?

Thanks for any ideas!

Best Regards,
Johnny Yau