Hi!
I am using a ListView together with a template to show information to my users.
If the user presses an item in my listview, a new listview apperes showing sub data for the item the user pressed.
When I'm not using a template, a > sign is visible to the right, notifying the user that the item can be pressed.
How can I add this > sign to my template so it looks the same as the build in one?
My current template looks like this:
Regards
Per
I am using a ListView together with a template to show information to my users.
If the user presses an item in my listview, a new listview apperes showing sub data for the item the user pressed.
When I'm not using a template, a > sign is visible to the right, notifying the user that the item can be pressed.
How can I add this > sign to my template so it looks the same as the build in one?
My current template looks like this:
Regards
Per
<script type="text/x-kendo-template" id="feedTemplate"> <div style="float:right"> > </div> <img class="item-image" src="${ImageUrl}" /> <h3 class="item-title">${Title}</h3> <p class="item-description">${Description}</p> <a href="\\#" data-role="button" class="delete">Delete</a> </script>