Ext.apply is a Sencha function to copy objects. Ext.apply(, );
You can have multiple source object names separated by comma.
Why do we need Ext.apply? Isn’t = enough? No, its not. Not only because you can merge and copy multiple sources to the destination there is also the big reason that, just a simple ‘=’ copies only the reference of the source object to the destination. Which means that if, you make any change to the destination object after copy it will affect the source copy too!







