Style"
From Documentation
Tmillsclare (talk | contribs) m (Created page with 'init') |
|||
(15 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{ZKComponentReferencePageHeader}} | |
+ | |||
+ | = Style = | ||
+ | |||
+ | *Demonstration: [http://www.zkoss.org/zkdemo/styling/custom_style Style] | ||
+ | *Java API: <javadoc>org.zkoss.zul.Style </javadoc> | ||
+ | *JavaScript API: <javadoc directory="jsdoc">zul.utl.Style</javadoc> | ||
+ | *Style Guide: N/A | ||
+ | |||
+ | = Employment/Purpose = | ||
+ | The style component used to specify <code>CSS</code> styles for the owner desktop. | ||
+ | |||
+ | '''Note:''' | ||
+ | *a <code>style</code> component can appear anywhere in a zul page, but it affects all components in the same <code>desktop</code>. | ||
+ | * <code>getContent()</code> simply gets the string that is set by setContent(). If you call setSrc() or call the constructor of Style(), getContent() still gets null. | ||
+ | |||
+ | = Example = | ||
+ | |||
+ | <br/> | ||
+ | [[Image:ZKComRef_Style_Example.png]] | ||
+ | |||
+ | <source lang="xml" > | ||
+ | <style> a{ color:red; }</style> | ||
+ | </source> | ||
+ | |||
+ | =Supported Events= | ||
+ | |||
+ | {| class='wikitable' | width="100%" | ||
+ | ! <center>Name</center> | ||
+ | ! <center>Event Type</center> | ||
+ | |- | ||
+ | | None | ||
+ | | None | ||
+ | |} | ||
+ | *Inherited Supported Events: [[ZK_Component_Reference/Base_Components/AbstractComponent#Supported_Events | AbstractComponent]] | ||
+ | |||
+ | =Supported Children= | ||
+ | |||
+ | *NONE | ||
+ | |||
+ | =Use Cases= | ||
+ | |||
+ | {| class='wikitable' | width="100%" | ||
+ | ! Version !! Description !! Example Location | ||
+ | |- | ||
+ | | | ||
+ | | | ||
+ | | | ||
+ | |} | ||
+ | |||
+ | =Version History= | ||
+ | {{LastUpdated}} | ||
+ | {| class='wikitable' | width="100%" | ||
+ | ! Version !! Date !! Content | ||
+ | |- | ||
+ | | 5.0.3 | ||
+ | | June 2010 | ||
+ | | The media property is supported. | ||
+ | |} | ||
+ | |||
+ | {{ZKComponentReferencePageFooter}} |
Latest revision as of 09:26, 30 August 2023
Style
Employment/Purpose
The style component used to specify CSS
styles for the owner desktop.
Note:
- a
style
component can appear anywhere in a zul page, but it affects all components in the samedesktop
. getContent()
simply gets the string that is set by setContent(). If you call setSrc() or call the constructor of Style(), getContent() still gets null.
Example
<style> a{ color:red; }</style>
Supported Events
None | None |
- Inherited Supported Events: AbstractComponent
Supported Children
*NONE
Use Cases
Version | Description | Example Location |
---|---|---|
Version History
Version | Date | Content |
---|---|---|
5.0.3 | June 2010 | The media property is supported. |