This is a migrated thread and some comments may be shown as answers.

Web Grid Right Click Open in New Tab

1 Answer 320 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Matt
Top achievements
Rank 1
Matt asked on 30 Jul 2012, 06:59 PM
Hi Guys, I want to implement navigation when a user clicks on a record in the grid. i.e. List of customers in grid, user clicks on one than it navigates to the customer details.

I can easily implement this with the selection hooks in kendoUI. My question is, is it possible to have it so I can implement hyperlink based navigation in the grid? So instead of single clicking on the customer to navigate straight to details in the page, the user can right click on a row and select "Open in new tab".

Any ideas?

Thanks

1 Answer, 1 is accepted

Sort by
0
Rosen
Telerik team
answered on 31 Jul 2012, 07:42 AM
Hi Matt,

If I have understood your question correctly, you want to add a link to one of the columns. If this is the case, you may achieve this by the use of column template:

columns: [ {
         field: "FirstName",
         title: "First Name",
         template: '<a href="CustomerDetails">#=FirstName#</a>'
     } ,
     //...
 ]

Regards,
Rosen
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Grid
Asked by
Matt
Top achievements
Rank 1
Answers by
Rosen
Telerik team
Share this question
or