Not able to save some characters in description field of a work item
Hello All,
I am creating a work item through RTC java API. I have a string in description as "--> <--".
Value is properly set but when I save the work item it will be truncated to "-->".
No problem with the size of description fields. Same thing works fine if I add it to a comment.
Any hints/suggestions ?
I am creating a work item through RTC java API. I have a string in description as "--> <--".
Value is properly set but when I save the work item it will be truncated to "-->".
No problem with the size of description fields. Same thing works fine if I add it to a comment.
Any hints/suggestions ?
One answer
I have seen that these items seem to get sanitized and things that look like HTML tags can remove bits of the input.
e.g. user enters some "code" like
if ( runtime <1 ) {
The data from < to the end of the line is likely to be elided. Similary for things that have what could be interpreted as general markup. E.g. The appearance of <words> or <phrases> ...
e.g. user enters some "code" like
if ( runtime <1 ) {
The data from < to the end of the line is likely to be elided. Similary for things that have what could be interpreted as general markup. E.g. The appearance of <words> or <phrases> ...