Announcement

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

  • acarur01
    replied
    Thank you!

    Leave a comment:


  • Isomorphic
    replied
    We've now made the change to suppress the hand cursor / hover prompt on disabled icons / icons in disabled items. The change will show up in the next nightly build.

    Leave a comment:


  • acarur01
    replied
    Same thing happens with date picker icon when it is disabled - also shows the tooltip

    Code:
    isc.DynamicForm.create({
        ID: "dateForm",
        numCols: 4,    
        width: 600,
        fields: [
            {name:"pickListDate", title:"PickList Date", type:"date", change:"dateLabel.setContents(value)"},
            {name:"directInputDate", title:"Direct Input Date", type:"date", useTextField:true, change:"dateLabel.setContents(value)", disabled: true}
        ]
    });

    Leave a comment:


  • Isomorphic
    replied
    Thanks for pointing this out. We've now made the change and as of the next nightly you should see the default cursor for non collapsible section item headers (as you do with sections in a SectionStack widget)

    Leave a comment:


  • acarur01
    started a topic cursor on sectionItem non-Collapsible

    cursor on sectionItem non-Collapsible

    In a normal section item (which can be collapsed), if a user hovers over the section header, a hand pointer is shown to indicate that it can be collapsed. I expect this behaviour to go away if canCollapse is set to false - as is the behaviour for SectionStack headers. How do I prevent this from happening in section item non collapsible headers?


    Code:
    isc.DynamicForm.create({
            width: 300,
            fields: [
                { defaultValue:"Stock", type:"section", sectionExpanded:false,canCollapse: false,
                    itemIds: ["inStock", "nextShipment"]
                },
                { name:"inStock", type:"checkbox", title:"In Stock" },
                { name:"nextShipment", type:"date", title:"Next Shipment", useTextField:true}
            ]
    });
Working...
X