Reputation: 4233
I change some values of a tree node programmatically and want to show the Ext.tree.Panel
the new value.
With set()
I get the record "dirty" but somehow this isn't enough to trigger the renderer to rerender the row.
Upvotes: 2
Views: 903
Reputation: 23983
Use beginEdit() and endEdit() instead. That should trigger the responsible events
Upvotes: 2