Announcement

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

    picklist base style does not work in IE8

    Running in SC 8.2p 04-11 build, using Enterprise skin
    Using IE8, FF11

    Run the sample in Firefox - click on dropdown icon - you'll notice that alternating rows are styled.
    Run the sample in IE8 - click on dropdown icon - all rows are not styled.

    Attached image of what it SHOULD look like.

    Code:
    isc.DynamicForm.create({
        top: 45,
        width: 500,
        numCols: 4,
        autoDraw: true,
        fields: [
            {name: "division",
             title: "Division",
             type: "select",
             valueMap: ["Marketing", "Sales", "Manufacturing", "Services"],
             pickListBaseStyle: "menuButton"
            }
        ]
    });
    Attached Files

    #2
    please respond.

    Comment


      #3
      The Enterprise skin has a pickListTallBaseStyle specified which you will have to override as well. See the docs for tallBaseStyle for a discussion of what tallBaseStyle does.

      Comment

      Working...
      X