- Timestamp:
- 10/08/08 10:12:19 (3 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/5.2/src/com/itmill/toolkit/terminal/gwt/client/ui/ITabsheetPanel.java
r5448 r5611 35 35 * 36 36 * @param w 37 * the widget to be added37 * the widget to be added 38 38 */ 39 @Override 39 40 public void add(Widget w) { 40 41 Element el = createContainerElement(); … … 65 66 * 66 67 * @param w 67 * the widget to be inserted68 * the widget to be inserted 68 69 * @param beforeIndex 69 * the index before which it will be inserted70 * the index before which it will be inserted 70 71 * @throws IndexOutOfBoundsException 71 * if <code>beforeIndex</code> is out of range72 * if <code>beforeIndex</code> is out of range 72 73 */ 73 74 public void insert(Widget w, int beforeIndex) { … … 77 78 } 78 79 80 @Override 79 81 public boolean remove(Widget w) { 80 82 final int index = getWidgetIndex(w); … … 96 98 * 97 99 * @param index 98 * the index of the widget to be shown100 * the index of the widget to be shown 99 101 */ 100 102 public void showWidget(int index) { … … 113 115 * Gets only called with 100% or "" 114 116 */ 117 @Override 115 118 public void setHeight(String height) { 116 119 super.setHeight(height); … … 140 143 DOM.setStyleAttribute(e, "visibility", "hidden"); 141 144 DOM.setStyleAttribute(e, "position", "absolute"); 142 DOM.setStyleAttribute(e, "top", " 0px");145 DOM.setStyleAttribute(e, "top", "-100000px"); // Fixes FF2 caret bug 143 146 DOM.setStyleAttribute(e, "left", "0px"); 144 147 }
