Announcement

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

    SelectItem's cell background in IE

    Hi,

    I'm using smartGWT version 2.5 and found out problem of loading image from them in SelectItem in Internet Explorer 9.

    When users rollover selectItem value item, item that is under user's mouse changes background, this is achieved by css style in smartGWT theme:
    Code:
    .pickListCellSelected {
        color:#333333;
        background:#FFFFFF url(./images/Menu/menu_rollover.png) repeat-x scroll;
    }
    in Firefox and Chrome this works ok, but IE 9 resolve this image to following url - /application-context/images/Menu/menu_rollover.png, so theme's folder is missing there.

    I can fix it by copying this image to images folder but in that case 1 images will be on 2 places.

    Shouldn't be this image defined in load_skin.js with [SKIN] prefix of url like other images?

    thanks,

    Michal

    #2
    IE9 will not normally resolve this image differently and you can see it working fine in the Showcase and default SDK projects. Let us know if you can figure out what settings you've changed that create this problem.

    Comment

    Working...
    X