Hi
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?
Thanks in advance for any help.
I have the same problem.
When I modify this sample:
https://www.syncfusion.com/downloads/support/directtrac/general/ze/SampleColTemp-242834600
and changed template to:
<script id="template" type="text/x-template">
<div>
<a rel='nofollow' href="/test/test/edit?id=${ShipCity}">${ShipCity}</a>
</div>
</script>
it is the result:
<div>
<a rel='nofollow' href="/test/test/edit?i" =tusil'="">Tusil</a>
</div>
When we expect fix for this?
How do you protect against such unexpected problems in the future?
We have production applications that have stopped working...
<script id="template" type="text/x-template">
<div>
<a rel='nofollow' rel='nofollow' href="">${ShipCity}</a>
</div>
</script>
<script>
function queryCellInfo(args) {
if (args.column.field == "ShipCity") {
args.cell.querySelector("a").rel='nofollow' href = "/test/test/edit?id=" + args.data.ShipCity;
}
}
</script> |
Hi Support,
Any updates on the issue, We need to plan if we can wait for a fix or if we should switch to different framework.
Regards
Tomek
THIS ISSUE HAS KILLED ALL GRIDS ON MY WEBSITE!!!!!
Please support where are we on this? I rely heavily on grids and it's a nightmare rioght now on production
[Layout.cshtml]
<head>
@* Syncfusion Essential JS 2 Scripts *@
<script src=https://cdn.syncfusion.com/ej2/19.2.46/dist/ej2.min.js></script>
</head>
|
[Layout.cshtml]
<head>
@* Syncfusion Essential JS 2 Styles *@
@* Syncfusion Essential JS 2 Scripts *@
</head>
|