I have a TileLayout which I am attempting to add Windows that contain HTMLFlows dynamically. I can add tiles using addTile(foo). However when I drag the Window to resize, the mouse grabs the edge, drags it, and then when the mouse is released, the window snaps back to its original size.
I have used setCanDragResize(true) on both the window object and the TileLayout. Why does it snap back?
I have searched and referenced this post as a guide: http://forums.smartclient.com/showth...t=tile+windows
Additionally, can TileWidth and TileHeight be set again at runtime, after the TileLayout has been initialized? Can both the tileWidth and tileHeight be calculated dynamically as noted in the TileLayout documentation, e.g. not be limited to choosing one or the other.
I have used setCanDragResize(true) on both the window object and the TileLayout. Why does it snap back?
I have searched and referenced this post as a guide: http://forums.smartclient.com/showth...t=tile+windows
Additionally, can TileWidth and TileHeight be set again at runtime, after the TileLayout has been initialized? Can both the tileWidth and tileHeight be calculated dynamically as noted in the TileLayout documentation, e.g. not be limited to choosing one or the other.
Width of each tile in pixels. See tileSize. If LayoutPolicy is "fit", expandMargins is false, tilesPerLine is set, Orientation is "horizontal", and tileWidth is not set, tileWidth will be computed automatically based on tilesPerLine
Height of each tile in pixels. See tileSize. If LayoutPolicy is "fit", expandMargins is false, tilesPerLine is set, Orientation is "vertical", and tileHeight is not set, tileHeight will be computed automatically based on tilesPerLine.
Height of each tile in pixels. See tileSize. If LayoutPolicy is "fit", expandMargins is false, tilesPerLine is set, Orientation is "vertical", and tileHeight is not set, tileHeight will be computed automatically based on tilesPerLine.
Comment