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
{name: “coy a, coy b, coy c”, id:”1,2,3”}
expected result in kendo grid
<a href=“/company/detail/1”>coy a</a>, <a href=“/company/detail/2”>coy b</a>, <a href=“/company/detail/3”>coy c</a>
<a href=“/company/detail/1”>coy a</a>, <a href=“/company/detail/2”>coy b</a>,
<a href=“/company/detail/3”>coy c</a>
Hello Benjamin,
You can use columns.template function to split the name string and pass it to the <a> elements. For example:
{ field: "name", template: linksTemp }, ... function linksTemp(dataitem) { var names = dataitem.name.split(","); var string = "<a href=“/company/detail/1”>" + names[0] + "</a></br>" + "<a href=“/company/detail/1”>" + names[1] + "</a></br>" + "<a href=“/company/detail/1”>" + names[2] + "</a>" return string; }
Dojo example: https://dojo.telerik.com/upOnaWoM
Let me know if you have any questions.
Regards, Nikolay Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.