Author: julien(a)jboss.com
Date: 2008-06-27 20:51:31 -0400 (Fri, 27 Jun 2008)
New Revision: 11185
Modified:
modules/presentation/trunk/ajax/src/main/java/org/jboss/portal/presentation/ajax/client/PresentationClientAgent.java
Log:
make the logger autoscroll to the bottom
Modified:
modules/presentation/trunk/ajax/src/main/java/org/jboss/portal/presentation/ajax/client/PresentationClientAgent.java
===================================================================
---
modules/presentation/trunk/ajax/src/main/java/org/jboss/portal/presentation/ajax/client/PresentationClientAgent.java 2008-06-28
00:22:22 UTC (rev 11184)
+++
modules/presentation/trunk/ajax/src/main/java/org/jboss/portal/presentation/ajax/client/PresentationClientAgent.java 2008-06-28
00:51:31 UTC (rev 11185)
@@ -127,7 +127,7 @@
container = getElement();
//
- DOM.setStyleAttribute(container, "width", "auto");
+ // DOM.setStyleAttribute(container, "width", "auto");
DOM.setStyleAttribute(container, "height", "128px");
DOM.setStyleAttribute(container, "overflow", "scroll");
@@ -144,6 +144,10 @@
//
DOM.appendChild(container, div);
+
+ // Autoscroll to bottom
+ String height = DOM.getElementProperty(container, "scrollHeight");
+ DOM.setElementProperty(container, "scrollTop", height);
}
}
Show replies by date