Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    StaticTextItem rendering problem

    StaticTextItem seems to have a problem to render when a '<' is followed by a '?'.

    Here is a little snippet that demonstrate it:
    Code:
    isc.DynamicForm.create({
    ID: "contactForm",
    width: 400,
    fields: [
    { value : 'Copy of "<>,,:><?`1234', name: "field1", title: "Text item", editorType: "TextItem" },
    { value : 'Copy of "<>,,:><?`1234', name: "field2", title: "Static text item", editorType: "StaticTextItem" }
    ]
    });
    You'll see that the rendering of the StaticTextItem field is truncated.

    Version 10.1p Build 2015-12-19 (currently on demo on smartclient.com) has the problem.

    Will it be possible to port the fix to version 9.1 as well ? We're currently using 9.1p Build 2015-10-28.

    Thank you !

    #2
    This property accepts HTML, so malformed HTML like you've would be expected to render oddly. If you want the character shown literally, you need to HTML escape them.

    Comment

    Working...
    X