FYI: something new in Ext Core

FYI: something new in Ext Core

.radioClass
Add class in one element and remove that same class if it exists from all of its siblings in one call.<div>
 .getColor
Gets a normalized (6 digit hex) color value for the passed in property, accepts a default value if the property is not set and a prefix (# is the default). 
(Does jQuery normalize color value via .css? I miss it?)<div>
.findParent('div', 4); <div>// looks up 4 parent nodes<div>
.clip
Store the current overflow setting and clip overflow on the element - use unclip to remove
.unclip
Return clipping (overflow) to original clipping before clip() was called </div><div>
</div>applyIf
This function is very similar to apply. The only difference is that applyIf only copies properties that don't exist in the destination object. If they already exist in both, the destination object takes precedence and the property is not copied. </div>
<div>
</div><div>from: <a href="http://extjs.com/products/extcore/manual/">http://extjs.com/products/extcore/manual/</a></div></div></div>