Is there a equivalent class in J2se client api for MultiDynaMetapushTable and DynaMetapushTable class as available in java web api?
no, only the Flex API offers something similar to those javascript calsses.
If it is not how we can achieve the same for J2SE client?
the J2SE client library does not offer visual widgets that you can use, so you have to subscribe to your items in COMMAND mode and handle the updates accordingly to show them on monitor.
Suppose we had subscribed a group of item with a schema, now we want to add one more item to this group, Is it possible to update this group or we have to make subscription call again for this item separately?
Can we use the same listener object as we used first time to subscribe the group?
Is it efficient to make subscription request for individual item?
I leave those to Dario
I was going through the portfolio demo on web, would you please explain me these lines " Each added row automatically provokes an underlying subscription to a sub-item in MERGE mode"
Is there something sub-item concept? Or it simply subscribing individual item?
The table is made by a main "portfolio" item subscribed to the PORTFOLIO_ADAPTER that provides the data you can see in the
basic version of the portfolio demo
Each time a new row enters the COMMAND table a new subscription is made to the QUOTE_ADAPTER (that is the adapter that feeds the
StockListDemo). This is a single item subscription.
HTH