-
28 Oct 2010 11:03 PM #1
how can i give link to text in grid column
how can i give link to text in grid column
i want to give link to some column text, and my text is comming from json file.
-
29 Oct 2010 12:12 AM #2
In your ColumnModel
Code:{header: "Link", width: 50, dataIndex: 'col1', renderer: function(value, metaData, record, rowIndex, colIndex, store){ return '<a href = "link.aspx">' + value + '</a>'; } }
-
29 Oct 2010 12:33 AM #3Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 41
Normally you don't want to navigate to a new page, so I recommend:
with:Code:{header: "Link", width: 50, dataIndex: 'col1', renderer: function(val, meta, rec) { meta.css += 'x-link'; return val; }}
andCode:.x-link { color: blue; text-decoration: underline; cursor: pointer; }
Code:grid.on('cellclick', function(grid, row, col, e){ var field = grid.getColumnModel().getDataIndex(col); if (field == 'col1') { var record = grid.getStore().getAt(row); // do stuff } });
-
29 Oct 2010 12:56 AM #4
-
29 Oct 2010 1:10 AM #5
i also need to add tooltip to that link in the grid cell, how can i add tooltip, please help
-
29 Oct 2010 1:40 AM #6Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 41
and on the first line of your Ext.onReady call:Code:{header: "Link", width: 50, dataIndex: 'col1', renderer: function(val, meta, rec) { meta.css += 'x-link'; meta.attr += 'ext:qtip="' + Ext.util.Format.htmlEncode('Tip: ' + rec.get('otherField')) + '"'; return val; }}
Code:Ext.QuickTips.init();
Similar Threads
-
How to give a Column Seperator in a Grid
By shajeerkt in forum Ext GWT: DiscussionReplies: 1Last Post: 29 Jan 2010, 10:48 AM -
How to give a href link to column or cell data in a EXT grid?
By rajesh_kar123 in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 11 May 2009, 7:22 AM -
How to add link in a grid column
By pankaj in forum Ext 1.x: Help & DiscussionReplies: 1Last Post: 7 Jan 2008, 5:46 AM -
give an alert when i click on column header
By sreenija in forum Ext 1.x: Help & DiscussionReplies: 0Last Post: 23 Dec 2007, 8:16 PM -
HTML link in a Grid column
By randy in forum Ext 1.x: Help & DiscussionReplies: 1Last Post: 21 Jan 2007, 7:28 PM


Reply With Quote