If we understand well, you need to manage a metapush table in which
- The initial state of the table is provided by the static contents of the page.
- Only the subsequent changes come from Lightstreamer, hence you subscribe to an item in COMMAND mode and don't ask for the snapshot.
This technique is not recommended because of the critical timeframe (between page composition and subscription) in which events can be lost.
Moreover, this technique is partially supported only for MERGE mode and OverwriteTable, but it is not supported for COMMAND mode. Even by using a MetapushTable, which starts with a fixed size, you can only fill the table with placeholders, not with real data. In fact, when the first update event for some key is received from the Server, the table will not look for initial data for the same key, but will just consider that update event as the first data and put it on the first line.
Note that using "showValues" to populate the table is also not feasible, because the support for COMMAND mode is limited to modifying existing rows.
May we investigate on the possibility of taking advantage of snapshot support also in your case?