I have a listview which shows arrow image on right to show detail.
------------------------------
Item 1 >
------------------------------
Item 2 >
------------------------------
I have defined template to add link as following:
<script id="hierarchicalLevelListViewTemplate" type="text/x-kendo-template">
# if (haschildren) { #
# var ecodedURI = '\\#level-view?levelId=' + levelId + '&id=' + id #
<a href="#:ecodedURI#" data-transition="slide:left">
#: Desc #
</a>
# } else { #
#: Desc #
# } #
</script>
Everything works fine. Now, I want to add a button to the listview as shown below:
------------------------------
Item 1 >
(button)
------------------------------
Item 2
(Button) >
------------------------------
What happens is, after adding button, the right arrow dissappear and both button and text becomes a link(are underlined).
Can you please help me to implement this. Will appreciate if you point me to a working sample.
Thanks!
------------------------------
Item 1 >
------------------------------
Item 2 >
------------------------------
I have defined template to add link as following:
<script id="hierarchicalLevelListViewTemplate" type="text/x-kendo-template">
# if (haschildren) { #
# var ecodedURI = '\\#level-view?levelId=' + levelId + '&id=' + id #
<a href="#:ecodedURI#" data-transition="slide:left">
#: Desc #
</a>
# } else { #
#: Desc #
# } #
</script>
Everything works fine. Now, I want to add a button to the listview as shown below:
------------------------------
Item 1 >
(button)
------------------------------
Item 2
(Button) >
------------------------------
What happens is, after adding button, the right arrow dissappear and both button and text becomes a link(are underlined).
Can you please help me to implement this. Will appreciate if you point me to a working sample.
Thanks!