Announcement

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

    Disable FormItem (SpinnerItem) is showig red cross image on IE

    Hi

    I am using smartgwt 2.2 for creating a form.

    My problem is, when i disable FormItem (SpinnerItem) then disabled SpinnerItem is showing red cross image on IE but there is no problem in firefox.

    Can anybody give me an idea why this is happening?

    #2
    I use smartGWT 2.4, and happen the same.

    The problem is a bug in smartGWT lib i think.
    You can use Firebug to see where smartGWT look for the image (the red "x"). And the image doesn't exist in folder where it looks for.

    I think the only way to fix it is re-building the lib.

    If someone knows other solution please tell it! ;)

    Comment


      #3
      You can manually add the blank.gif file from the Enterprise skin to your war structure. In my case I added the file in

      Code:
      <war dir>/<module>/sc/skins/standard/images/blank.gif
      I had to create the dirs 'standard' and 'images' since they are not created when using the Enterprise skin.

      Alternatively (this is nice if you have more than one module) add it to the public folder of your base module:

      Code:
      public/sc/skins/standard/images/blank.gif
      This way it is copied to the module dirs of all modules and you don't have to do it.

      Comment

      Working...
      X