X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/output/Ext.util.CSS.js diff --git a/docs/output/Ext.util.CSS.js b/docs/output/Ext.util.CSS.js new file mode 100644 index 00000000..f7a11f9e --- /dev/null +++ b/docs/output/Ext.util.CSS.js @@ -0,0 +1,251 @@ +Ext.data.JsonP.Ext_util_CSS({ + "tagname": "class", + "name": "Ext.util.CSS", + "doc": "

Utility class for manipulating CSS rules

\n", + "extends": null, + "mixins": [ + + ], + "alternateClassNames": [ + + ], + "xtype": null, + "author": null, + "docauthor": null, + "singleton": true, + "private": false, + "cfg": [ + + ], + "method": [ + { + "tagname": "method", + "name": "createStyleSheet", + "member": "Ext.util.CSS", + "doc": "

Creates a stylesheet from a text blob of rules.\nThese rules will be wrapped in a STYLE tag and appended to the HEAD of the document.

\n", + "params": [ + { + "type": "String", + "name": "cssText", + "doc": "

The text containing the css rules

\n", + "optional": false + }, + { + "type": "String", + "name": "id", + "doc": "

An id to add to the stylesheet for later removal

\n", + "optional": false + } + ], + "return": { + "type": "StyleSheet", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/CSS.js", + "linenr": 22, + "html_filename": "CSS.html", + "href": "CSS.html#Ext-util-CSS-method-createStyleSheet", + "shortDoc": "Creates a stylesheet from a text blob of rules.\nThese rules will be wrapped in a STYLE tag and appended to the HEAD o..." + }, + { + "tagname": "method", + "name": "getRule", + "member": "Ext.util.CSS", + "doc": "

Gets an an individual CSS rule by selector(s)

\n", + "params": [ + { + "type": "String/Array", + "name": "selector", + "doc": "

The CSS selector or an array of selectors to try. The first selector that is found is returned.

\n", + "optional": false + }, + { + "type": "Boolean", + "name": "refreshCache", + "doc": "

true to refresh the internal cache if you have recently updated any rules or added styles dynamically

\n", + "optional": false + } + ], + "return": { + "type": "CSSRule", + "doc": "

The CSS rule or null if one is not found

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/CSS.js", + "linenr": 141, + "html_filename": "CSS.html", + "href": "CSS.html#Ext-util-CSS-method-getRule", + "shortDoc": "

Gets an an individual CSS rule by selector(s)

\n" + }, + { + "tagname": "method", + "name": "getRules", + "member": "Ext.util.CSS", + "doc": "

Gets all css rules for the document

\n", + "params": [ + { + "type": "Boolean", + "name": "refreshCache", + "doc": "

true to refresh the internal cache

\n", + "optional": false + } + ], + "return": { + "type": "Object", + "doc": "

An object (hash) of rules indexed by selector

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/CSS.js", + "linenr": 118, + "html_filename": "CSS.html", + "href": "CSS.html#Ext-util-CSS-method-getRules", + "shortDoc": "

Gets all css rules for the document

\n" + }, + { + "tagname": "method", + "name": "refreshCache", + "member": "Ext.util.CSS", + "doc": "

Refresh the rule cache if you have dynamically added stylesheets

\n", + "params": [ + + ], + "return": { + "type": "Object", + "doc": "

An object (hash) of rules indexed by selector

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/CSS.js", + "linenr": 83, + "html_filename": "CSS.html", + "href": "CSS.html#Ext-util-CSS-method-refreshCache", + "shortDoc": "

Refresh the rule cache if you have dynamically added stylesheets

\n" + }, + { + "tagname": "method", + "name": "removeStyleSheet", + "member": "Ext.util.CSS", + "doc": "

Removes a style or link tag by id

\n", + "params": [ + { + "type": "String", + "name": "id", + "doc": "

The id of the tag

\n", + "optional": false + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/CSS.js", + "linenr": 56, + "html_filename": "CSS.html", + "href": "CSS.html#Ext-util-CSS-method-removeStyleSheet", + "shortDoc": "

Removes a style or link tag by id

\n" + }, + { + "tagname": "method", + "name": "swapStyleSheet", + "member": "Ext.util.CSS", + "doc": "

Dynamically swaps an existing stylesheet reference for a new one

\n", + "params": [ + { + "type": "String", + "name": "id", + "doc": "

The id of an existing link tag to remove

\n", + "optional": false + }, + { + "type": "String", + "name": "url", + "doc": "

The href of the new stylesheet to include

\n", + "optional": false + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/CSS.js", + "linenr": 67, + "html_filename": "CSS.html", + "href": "CSS.html#Ext-util-CSS-method-swapStyleSheet", + "shortDoc": "

Dynamically swaps an existing stylesheet reference for a new one

\n" + }, + { + "tagname": "method", + "name": "updateRule", + "member": "Ext.util.CSS", + "doc": "

Updates a rule property

\n", + "params": [ + { + "type": "String/Array", + "name": "selector", + "doc": "

If it's an array it tries each selector until it finds one. Stops immediately once one is found.

\n", + "optional": false + }, + { + "type": "String", + "name": "property", + "doc": "

The css property

\n", + "optional": false + }, + { + "type": "String", + "name": "value", + "doc": "

The new value for the property

\n", + "optional": false + } + ], + "return": { + "type": "Boolean", + "doc": "

true If a rule was found and updated

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/CSS.js", + "linenr": 160, + "html_filename": "CSS.html", + "href": "CSS.html#Ext-util-CSS-method-updateRule", + "shortDoc": "

Updates a rule property

\n" + } + ], + "property": [ + + ], + "event": [ + + ], + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/CSS.js", + "linenr": 1, + "html_filename": "CSS.html", + "href": "CSS.html#Ext-util-CSS", + "cssVar": [ + + ], + "cssMixin": [ + + ], + "component": false, + "superclasses": [ + + ], + "subclasses": [ + + ], + "mixedInto": [ + + ], + "allMixins": [ + + ] +}); \ No newline at end of file