-
2 Mar 2007 4:03 AM #1
Re-render content in resizable column using custom renderer?
Re-render content in resizable column using custom renderer?
What is needed to re-render content in a resizable column that has a custom renderer?
EDIT: I have tried to do the following:
but this will cause the grid to go wild :-DCode:grid.on('columnresize', grid.getView().refresh());
-
2 Mar 2007 8:39 AM #2
It needs a callback to call, whereas you were invoking it directly.Code:grid.on('columnresize', function(){ grid.getView().refresh(); });
-
2 Mar 2007 12:36 PM #3
Thanks Jack!
Is it possible to only re-render one column instead of the entire grid (it is too slow)?
-
25 Jun 2008 8:34 AM #4
Don't know if this has been answered somewhere else but I'm having the same question here.
How do I re render a column?
Similar Threads
-
Unable to implement a Custom Renderer, please help!
By MatteoSp in forum Ext 1.x: Help & DiscussionReplies: 2Last Post: 31 Mar 2007, 4:16 AM -
Grid - Custom header renderer?
By KimH in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 3 Mar 2007, 3:28 PM -
Re-render BasicDialog with different content
By kalebwalton in forum Ext 1.x: Help & DiscussionReplies: 6Last Post: 6 Feb 2007, 12:37 PM -
Using a renderer on a column doesn't seem to work with sort?
By donalconlon in forum Ext 1.x: Help & DiscussionReplies: 7Last Post: 11 Dec 2006, 1:32 PM -
Custom row renderer in paging grid causes toolbar to vanish
By steve.neill in forum Ext 1.x: BugsReplies: 3Last Post: 1 Dec 2006, 5:20 AM


Reply With Quote