Here's an Effect for Scaling:
import com.extjs.gxt.ui.client.core.El;
import com.extjs.gxt.ui.client.fx.BaseEffect;
class Scale extends BaseEffect {
private int fromWidth, toWidth;
Type: Posts; User: wetar
Here's an Effect for Scaling:
import com.extjs.gxt.ui.client.core.El;
import com.extjs.gxt.ui.client.fx.BaseEffect;
class Scale extends BaseEffect {
private int fromWidth, toWidth;
Thanks for the reply.
Why is the method overloaded? (El.setStyleAttribute(String, Object), El.setStyleAttribute(String, String))
Is there any reason to use El.setStyleAttribute(String, Object)...
I used El.setStyleAttribute("left", 123) to position Components and get strange behaviour in Firefox. In certain circumstances the attribute was not set. The Error was only in Firefox not in IE.
...