Announcement

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

    #16
    Originally posted by Isomorphic
    @abbhi if you're having a problem, read the FAQ for what information you should provide.
    Can you please tell me the .jar files i need to update in my lib dir, so that i dont face the tilegrid update issue.

    Comment


      #17
      Originally posted by abbhi131
      Can you please tell me the .jar files i need to update in my lib dir, so that i dont face the tilegrid update issue.
      Hi,

      I'm facing the issue after updating my smartgwt.jar and smartgwt-skin.jar...can u please tell me the changes i need to make :)

      Comment


        #18
        Hi,

        I'm using tilegrid to display a couple of fields which includes the description of the record. Since the desc.is too long to display in the basic tilegrid style...please find attached the tilegrid i currently use and the one which i wish to implement..Please can anyone tell me what should i change in my code to get what i desire.
        Attached Files

        Comment


          #19
          Hello,

          Please can anyone tell a way out for my prev.request..Its kind of urgent..so please reply if u have something to share asap.

          Comment


            #20
            Originally posted by abbhi131
            Hi,

            I'm facing the issue after updating my smartgwt.jar and smartgwt-skin.jar...can u please tell me the changes i need to make :)
            The fix is good...working perfectly :)

            Comment


              #21
              I updated my build with one of the more recent nightly builds and the bug seems to be fixed. Thanks.

              Comment


                #22
                As a workaround I remove the tile grid from the layout and get a new instance of the tile grid, then put it back to the layout.

                Code:
                layout.removeMember(tileGrid);
                tileGrid = getNewInstanceOfTileGrid();
                layout.addMember(tileGrid, 0);
                This is a very ugly workaround and I'd appreciate a proper fix.

                Thanks and good job!

                Comment


                  #23
                  Oops, I didn't checked the rest of the forum pages.
                  Glad that this is now fixed, anyway my ugly workaround is useless now :)

                  Thanks.

                  Comment

                  Working...
                  X