Hi Support
We are using ejs-grid component in .Net core MVC.
In one of the column we store url within a template :
<e-grid-column field="cust_name" headertext="Customer Name" Template="#stlmtTemplate"></e-grid-column>
Refrence to the template
<script id="stlmtTemplate" type="text/x-template">
<div style="display:inline-block">
<a rel='nofollow' href="/xxxxxx/xxxxx?calcGrpSkid=${calc_grp_skid}">${cust_name}</a>
</div>
<
/script>
Today something has changed and code is not working properly anymore. It seems that url that is passed via template is now modified, part of the url is now removed.
Above mentioned code used to generate below html :
<a rel='nofollow' href="/xxxxx/xxxxx?calcGrpSkid=paramter_value'="">xxxxx</a>
Today the html looks like this :
<a rel='nofollow' href="/xxxxxx/xxxxx?calcGrpSki" =paramter_value'="">xxxxxx</a>
Could you please let us know, if there was any change to the component logic?
Issue is crtical for us, it impacts our production system.
Thanks in advance for any help.