Announcement

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

    LinkItem appearance issue

    Hi Isomorphic,

    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]
    });
    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


    #2
    We've made a framework change to fix this issue for you. Please try the next nightly build dated Jan 11 or above
    Regards
    Isomorphic Software

    Comment

    Working...
    X