I want to create a column in our grid which only contains an image of a magnifying-glass. In my model I have a property which contains the name of a file.
When this column is clicked I must be able to trigger an action with the name of the file so I can open this file in another webpage.
How can I do this ? Are there any examples ?
Hello timdelma,
Thank you for posting in our community.
You can use a column template and an unbound column for the purpose.
You can use the approach from the following online sample:
http://igniteui.com/grid/column-template
In your case the template can use an image and inside onclick action you can open the file with the specified name in a new tab.
I've attach a sample opening google search page and passing a string as query.
Please let us know if you need further assistance.
Any one ?