Extjs create a grid feature or grid plugin that sets a tooltip for each column in the grid
This question has the answer to adding the tooltip: Extjs4 set tooltip on each column hover in gridPanel I have a follow up question to the most upvoted answer to this question, which is modifying the renderer function to add the tool tip like below: { xtype : 'gridcolumn', dataIndex : 'status', text : 'Status', renderer : function(value, metadata) { metadata.tdAttr = 'data-qtip="' + value + '"'; return value; } } I want to have a grid plugin or feature which sets a custom tooltip using the above implementation. Question is how can I add my stuff but at the same time not take away a user