Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Telerik
Build great .NET business apps
Net Web
Cross-Platform
Desktop
Reporting and Documents
Testing & Mocking
Debugging
Build JavaScript UI
Javascript
AI for Developers & IT
Ensure AI program success
AI Coding
Additional Tools
Enhance the developer and designer experience
UI/UX Tools
Free Tools
CMS
Support and Learning
Productivity and Design Tools
Hi,
We have just purchased Telerik UI for ASP.NET Core.
Could I get some help trying to implement a template column that contains and Action Link like the following Tag?
<a asp-page="./Details" asp-route-id="@item.Id">Details</a>
[Using Core Razor Pages, .NET Core 2.0, VS2017]
Update: - So for now I have implemented a non-tag-helper method:
columns.Bound(p => p.Id).ClientTemplate("<a href='/Practice/Details?id=#= Id #'>Details</a> | " + "<a href='/Practice/Edit?id=#= Id #'>Edit</a> | " + "<a href='/Practice/Delete?id=#= Id #'>Delete</a>")
Ideally it would be nice to use the tag-helper approach inside the ClientTemplate - eg (not working)
columns.Bound(p => p.Id).ClientTemplate("<a asp-page=./Details asp-route-id=#= Id #>Details</a>");