We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have encountered an error when used AgGrid with allow_unsafe_jscode to True and passing cellRenderer for one of the Column
allow_unsafe_jscode
True
cellRenderer
Component Error `` literal not terminated before end of script
I am constructing a custom anchor tag based on params.value and using https:// there was resulting in error
params.value
https://
I have escaped forward slash i.e. https:\/\/ to fix the issue,
https:\/\/
return <a href="https://example.com/${params.value}/" target="_blank">${params.value}</a>; to return <a href="https:\/\/example.com/${params.value}/" target="_blank">${params.value}</a>;
<a href="https://example.com/${params.value}/" target="_blank">${params.value}</a>
<a href="https:\/\/example.com/${params.value}/" target="_blank">${params.value}</a>
I was wondering if this can be handled more elegantly in the component itself ? Thanks used to work in pre version.
(have switched from 0.2.3 where it was working to 0.3.2 so not sure when it was broken in between)
0.2.3
0.3.2
PS: thanks for building an awesome component that works all the time out of the box 💯
The text was updated successfully, but these errors were encountered:
Should be fixed in 0.3.3
Sorry, something went wrong.
No branches or pull requests
I have encountered an error when used AgGrid with
allow_unsafe_jscode
toTrue
and passingcellRenderer
for one of the ColumnI am constructing a custom anchor tag based on
params.value
and usinghttps://
there was resulting in errorI have escaped forward slash i.e.
https:\/\/
to fix the issue,I was wondering if this can be handled more elegantly in the component itself ? Thanks
used to work in pre version.
(have switched from
0.2.3
where it was working to0.3.2
so not sure when it was broken in between)PS: thanks for building an awesome component that works all the time out of the box 💯
The text was updated successfully, but these errors were encountered: