Hi There,
I'm looking for some cell templating examples for asp.net core mvc helper. I've been through the documentation, blogs etc but cannot find details on this. Specifically what i'm trying to do is that when i hover over a particular column i would like it to display the full contents of a different column in the grid. Right now i'm using an unbound column to render a hyperlink that will show it, but it's not ideal.
Are there any sample projects that have this functionality that i can look at?
Thanks
Hi Andrew, Cell templating in ASP.NET Core often requires using conditional rendering in your grid configuration. One simple way is to create a custom column template using the clientTemplate option, where you can show or hide content based on hover events.
clientTemplate
I’ve found that looking at practical examples outside pure documentation often helps. For example, I recently worked on a project where we integrated extra UI elements for user interaction. If you’re also interested in practical utilities, this Snow Day Calculator is a fun example of using conditional logic to display dynamic results.