-
9 Nov 2011 12:56 AM #1
Answered: Make the data in the gridpanel as a hyperlink to another page
Answered: Make the data in the gridpanel as a hyperlink to another page
Hi all...
I need to make the data present in the gridpanel of a particular column as hyperlink. Example, if the name of the column is REPORT_NO. If you click on any of the report numbers present in this column, its respective report should open. Any ideas? Its kinda URGENT.
-
Best Answer Posted by netemp
You can achieve this by defining a renderer for that column and returning the following from the renderer:
This should resolve the issue.Code:var str = '<a href="url">'+val+'</a>'; return str;
-
9 Nov 2011 1:02 AM #2
Use a renderer
Use a renderer
You can achieve this by defining a renderer for that column and returning the following from the renderer:
This should resolve the issue.Code:var str = '<a href="url">'+val+'</a>'; return str;
-
9 Nov 2011 5:48 AM #3Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 438
- Answers
- 3113
May want to add a target to that a tag to open in a new window/tab
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
9 Nov 2011 9:17 PM #4
Thanks a lot, netemp and Mitchell Simoens!



Reply With Quote