Hi Isomorphic,
please see this testcase:
The Dynamic Form is configured to clipStaticValue. Please see the LinkItem "dateTimeItem2". Here, the value gets not clipped. Can you please fix this, or give advice on how to solve this?
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, readOnlyDisplay : "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: "dateTimeItem2", title: "Datetime", editorType: "LinkItem", value: "llllllllllllllllllllllllllllllloooooooooooooooooooooooooooooong@web.de" }, { name: "dateTimeItem3", title: "Datetime", editorType: "TextItem", value: "llllllllllllllllllllllllllllllloooooooooooooooooooooooooooooong@web.de" }, { 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] });
Kind Regards
Comment