Tower
Tower

Reputation: 102785

How to make ExtJS grid to re-render itself?

I have a column rendering for a grid which draws text in bold if certain data holds true. Now when this data changes, I want to call some method on the grid to make it re-render itself. Is there a way to do this?

Upvotes: 15

Views: 17572

Answers (1)

user123444555621
user123444555621

Reputation: 152966

It's as easy as

grid.getView().refresh();

Upvotes: 21

Related Questions