K..
K..

Reputation: 4233

how to tell a tree panel to render a record again?

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

Answers (1)

sra
sra

Reputation: 23983

Use beginEdit() and endEdit() instead. That should trigger the responsible events

Upvotes: 2

Related Questions