| CODENOTIFIER | HelpYou are not signed inSign in |
Project: gwt-ext
Revision: 1816
Author: sanjiv.jivan
Date: 03 Sep 2008 19:49:57
Changes:updated for gwt 1.5.2
Files:| ... | ...@@ -87,9 +87,9 @@ | |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | public void startDrag(int x, int y) { |
| 90 | String zIndex = DOM.getStyleAttribute(this.getEl(), "zIndex"); | |
| 91 | if(zIndex != null && !"".equals(zIndex)) { | |
| 92 | origZ = Integer.parseInt(zIndex); | |
| 90 | int zIndex = DOM.getIntStyleAttribute(this.getEl(), "zIndex"); | |
| 91 | if(zIndex != 0) { | |
| 92 | origZ = zIndex; | |
| 93 | 93 | } |
| 94 | 94 | DOM.setIntStyleAttribute(this.getEl(), "zIndex", 999); |
| 95 | 95 | } |