Hi Isomorphic,
please see this testcase:
Here is a screenshot from the above code running in the showcase:
I'm using this setup to show entered content to the user on mobile devices. All of the above items have to be clipped, to not exceed the clients display width. The StaticTextItem "mdri" is the only FormItem in the DynamicForm using title orientation "top". As you can see, this title exceeds the width for the first column and is not clipped like the others.
Is there a way to clip the title, like in the other FormItems but with title orientation "top"?
Thanks in advance!
Kind Regards
please see this testcase:
Code:
isc.DynamicForm.create({ ID: "dateForm", width: 500, fixedColWidths: true, titleAlign: "left", canEdit: false, numCol: 2, clipItemTitles: true, clipStaticValue: true, colWidths: [100, "*"], width: "100%", isGroup: true, ReadOnlyDisplayAppearance: "static", groupTitle: "Date Controls", fields : [{ name: "dateItem", title: "Date", editorType: "DateItem" }, { name: "dateItem2", title: "Date", editorType: "DateItem", useTextField: true }, { name: "spinnerItem", title: "Spinner", editorType: "SpinnerItem", }, { name: "dateTimeItem", title: "Datetime", editorType: "DateTimeItem", type: "datetime", useTextField: true }, { name: "timeItem2", title: "Time", editorType: "TimeItem", useTextField: false }, { name: "mdri", title: "Mini Date Range", editorType: "StaticTextItem", value: "You can spell check very long text areas without compromising any performance hits. Regardless of the size of the text, UltimateSpell only sends small portions of the text to the server as needed, while the user spell checks through the text.You can spell check very long text areas without compromising any performance hits. Regardless of the size of the text, UltimateSpell only sends small portions of the text to the server as needed, while the user spell checks through the text.You can spell check very long text areas without compromising any performance hits. Regardless of the size of the text, UltimateSpell only sends small portions of the text to the server as needed, while the user spell checks through the text.You can spell check very long text areas without compromising any performance hits. Regardless of the size of the text, UltimateSpell only sends small portions of the text to the server as needed, while the user spell checks through the text.", titleOrientation: "top", colSpan: 2 } ] }); isc.VStack.create({ membersMargin: 10, width: "100%", members: [dateForm] });
I'm using this setup to show entered content to the user on mobile devices. All of the above items have to be clipped, to not exceed the clients display width. The StaticTextItem "mdri" is the only FormItem in the DynamicForm using title orientation "top". As you can see, this title exceeds the width for the first column and is not clipped like the others.
Is there a way to clip the title, like in the other FormItems but with title orientation "top"?
Thanks in advance!
Kind Regards
Comment