Reputation: 2973
Here is what is happening:
Has someone ever crossed this issue? Thanks.
Upvotes: 1
Views: 1142
Reputation: 10325
If you are using a
dataProvider.refresh();
Consider changing this to
dataProvider.itemUpdated(item);
The .refresh()
sends a 'refresh' type event that causes the dataGrid to change. The itemUpdated(item)
method does not dispatch this event.
Upvotes: 3