Changeset 5273
- Timestamp:
- 08/27/08 07:20:28 (3 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/itmill/toolkit/terminal/gwt/client/ui/ITabsheetPanel.java
r5163 r5273 110 110 } 111 111 112 /* 113 * Gets only called with 100% or "" 114 */ 112 115 public void setHeight(String height) { 113 116 super.setHeight(height); … … 134 137 DOM.setStyleAttribute(e, "visibility", "hidden"); 135 138 DOM.setStyleAttribute(e, "position", "absolute"); 139 DOM.setStyleAttribute(e, "top", "0px"); 136 140 } 137 141 … … 139 143 DOM.setStyleAttribute(e, "visibility", ""); 140 144 DOM.setStyleAttribute(e, "position", ""); 145 DOM.setStyleAttribute(e, "top", ""); 141 146 } 142 147 }
