I have a listGrid which always displays some values depending on some criteria, let's say where field1 == "A".
If I update one of the records in another component using another datasource, I use addRelatedUpdate() on the server-side. This uses an UPDATE dsResponse for this.
So let's say I update the record to: field1 = "B" and call addRelatedUpdate().
Then, the record disappears from the listGrid since it gets an update and the criteria hide records having field1 != "A". This is correct.
But the other way around is not working:
I have a record with field = "B". I update the value to "A" somewhere else and call addRelatedUpdate().
The record is not appearing in the listGrid! Is this the normal behavior? And what can I do to correct this ?
Using smartGWT 4.1p Power.
If I update one of the records in another component using another datasource, I use addRelatedUpdate() on the server-side. This uses an UPDATE dsResponse for this.
So let's say I update the record to: field1 = "B" and call addRelatedUpdate().
Then, the record disappears from the listGrid since it gets an update and the criteria hide records having field1 != "A". This is correct.
But the other way around is not working:
I have a record with field = "B". I update the value to "A" somewhere else and call addRelatedUpdate().
The record is not appearing in the listGrid! Is this the normal behavior? And what can I do to correct this ?
Using smartGWT 4.1p Power.
Comment