Announcement

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

    Howto set the resize control of a com.smartgwt.client.widgets.Window to the top and right

    Is it possible to set the resize control of an com.smartgwt.client.widgets.Window not only to the bottom and the right but also to the top and the left?

    The window Instance is created as follows:

    Window window = new Window(); window.setAutoSize(true); window.setTitle(title); window.setCanDragReposition(true); window.setCanDragResize(true);

    #2
    You can set the available resize edges via setResizeFrom().

    Comment


      #3
      Works as expected! Thank you for that hint!

      Comment

      Working...
      X