Welcome to the ASP.NET Core feedback portal. We’re happy you’re here! If you have feedback on how to improve the ASP.NET Core, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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.