Announcement

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

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

    #2
    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)

    Comment


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

      Comment


        #4
        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.

        Comment


          #5
          Thank you!

          Comment

          Working...
          X