StaticTextItem seems to have a problem to render when a '<' is followed by a '?'.
Here is a little snippet that demonstrate it:
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 !
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" }
]
});
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 !
Comment