like in the Portfolio example, I have a DynaGrid
the adapter have events, at startup it pushes a full list of rows, at any time a new row can be added. This part is ok
but I have other more tiny events (quote) for them the secondLevelAdapter is well suited (because I don't know the row id for them)
but I did not managed to catch the events in the browser, probably because it's all in the same default Adapter class?
I tried setting it or not:
sending a UPDATE command with a random(but not existing) key make it work, but that's not really clean
in js:
var subscription = new Subscription("COMMAND", id, fieldList);
//subscription.setDataAdapter("DEFAULT");
subscription.setRequestedSnapshot("yes");
//subscription.setCommandSecondLevelDataAdapter("DEFAULT");
subscription.setCommandSecondLevelFields(secondLevelFieldList);
subscription.addListener(grid);
client.subscribe(subscription);
..sorry but it seems the forum doesn't handle well the Title editing