Planned
Field value length issue in
When using Vizlib Table/Filter we have noticed that when hovering over a cell that has more than 1024 characters, the entire text is not presented and gets truncated.
Case reference: #37872
Attached the document for reference.
Please note your unique ticket reference (#37952) and URL https://community.vizlib.com/helpdesk/tickets/37952
1. For the second column “Level_1” you are using “XAI_level1_html” variable which is a string containing multiple HTML elements.
1<style>div {width: 150px;word-wrap: normal;}</style>
2<div><span style=\"font-family: monospace;\">
3 ...span elements
4</div>
div {width: 150px;word-wrap: normal;}
modifies alldiv
elements inside the app and it breaks the view. Style tags should be removed from this variable or have to be properly declared e.g. some class name.<element style"...here are styles">...content</content>"
notstyle
tag or use at least some generic class names.white-space
style to specific container elements likediv
. eg.<div style"white-space: pre-wrap;">... content here...</div>
- Remove all style tags from the source of variables.
- Add
white-space: pre-wrap
to element which includes the content.e.g. modify expression for cell tooltip content like:
1='<div style="white-space: pre-wrap;">' & XAI_level1_html & '</div>'`.
Hopefully, you can begin working on this and let us know how you get on with it.
Please note your unique ticket reference (#37952) and URL https://community.vizlib.com/helpdesk/tickets/37952