I'm looking to enhance some of my UI with some basic animations. Is there any support for this in the framework?
I'm looking to enhance some of my UI with some basic animations. Is there any support for this in the framework?
Sure, there is! Take a look a the Ext.util.Animation class: http://docs.sencha.com/ext-js/4-1/#!...t.util.Animate
Code:var p1 = Ext.get('myElementId'); //Getting a dom element by ID p1.animate({ duration: 100, to: { opacity: 0 } });
this is great! Thanks.