When i export a Kendo UI Grid to Excel (xlsx) file, it also exports the group footer template which in my case included hidden fields (<input type=hidden id="test"></input>)
Is there a way we can suppress the export of the group footer template and the group header template.
The header template also gets exported in the output xlsx file.
In my case the group header template looks like the following:
<script id="productCodeTemplate" type="text/x-kendo-tmpl">
# var product = value; productArr = product.split(";"); #
<span class="name" style="display: inline-block;width:500px;">Product Code: #: productArr[0]# </span>
</script>
The group footer template is as follows
groupFooterTemplate: "<input type='hidden' class='totalFooter' value='#=count#'></input><span class='totalFooterSpan'>Total</span>"
Kindly see attached zip file for a sample of the exported excel.