This question is locked. New answers and comments are not allowed.
Hi. I am using Telerik Extensions for ASP.NET MVC Open Source Version: 2010.3 1318 (Jan 18, 2011). I used MVC extension with ASPX before and I like this very much. But now with this new version I found a issue here.
I am using Razor view engine right now. My codes look like:
1) columns.Bound(o => o.Id).ClientTemplate("User <#= Id #>")
2) columns.Bound(o => o.Id).ClientTemplate(Html.ActionLink("Edit", "Edit", "User", new { id = "<#= Id #>" }, null).ToHtmlString())
First line works great.
Second line worked great with ASPX view engine before. But now with Razor I never retrieved the data from "<#= Id #>" if I put it as a parameter of a server side method.
Anyone can help? Thanks a lot.
I am using Razor view engine right now. My codes look like:
1) columns.Bound(o => o.Id).ClientTemplate("User <#= Id #>")
2) columns.Bound(o => o.Id).ClientTemplate(Html.ActionLink("Edit", "Edit", "User", new { id = "<#= Id #>" }, null).ToHtmlString())
First line works great.
Second line worked great with ASPX view engine before. But now with Razor I never retrieved the data from "<#= Id #>" if I put it as a parameter of a server side method.
Anyone can help? Thanks a lot.