Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / docs / source / CompositeElementCSS.html
1 <!DOCTYPE html><html><head><title>Sencha Documentation Project</title><link rel="stylesheet" href="../reset.css" type="text/css"><link rel="stylesheet" href="../prettify.css" type="text/css"><link rel="stylesheet" href="../prettify_sa.css" type="text/css"><script type="text/javascript" src="../prettify.js"></script></head><body onload="prettyPrint()"><pre class="prettyprint"><pre><span id='Ext-fx.target.CompositeElementCSS'>/**
2 </span> * @class Ext.fx.target.CompositeElementCSS
3  * @extends Ext.fx.target.CompositeElement
4  * 
5  * This class represents a animation target for a {@link Ext.CompositeElement}, where the
6  * constituent elements support CSS based animation. It allows each {@link Ext.core.Element} in 
7  * the group to be animated as a whole. In general this class will not be created directly, 
8  * the {@link Ext.CompositeElement} will be passed to the animation and the appropriate target 
9  * will be created.
10  */
11 Ext.define('Ext.fx.target.CompositeElementCSS', {
12
13     /* Begin Definitions */
14
15     extend: 'Ext.fx.target.CompositeElement',
16
17     requires: ['Ext.fx.target.ElementCSS'],
18
19     /* End Definitions */
20     setAttr: function() {
21         return Ext.fx.target.ElementCSS.prototype.setAttr.apply(this, arguments);
22     }
23 });</pre></pre></body></html>