Hi all,
I have a igGrid and i want to add a column with one ACTIONLINK or similar.
When i clicked the action link i want to go other view with other action to show row details in other view.
another option would be, on double click on the row, go directly to another view
It's this possible?
a lot of thanks for advance
Hi Ruben Ordonez,
You can use an unbound column to acheive your goal.
Inside the unbound golumn you can create anchor tag uising Template. Here is an example:
column.Unbound(
"UnBound").Template("<a href='/Home/Details/${ID}'>Details</a>").Width("100px").HeaderText("Details");
This code Navigate to Details ActionView of the Home controller, and it's passing ID property of my model to the ActionView, where you can add extra logic to get the details for that specific row of the grid and display them in a suitalble to your case way.
Thanks,
Todor Paskalev
Infragistics
Hi Todor,
thanks for help, I try to do this but i Can't, when i put column.Unbound the intilesense doesn't show this option and don't work
my version of infragistics.Web.MVC is 3.11.1.2118, probably i need a version more actual? this version don'y have this option? my licenced packaged from infragistics is: NetAdvantatge 2011.1
a lot fo thanks for advance