Documentation for classes includes syntax, usage information, and code samples for methods, properties, and event handlers and listeners for those APIs that belong to a specific class in ActionScript. The classes are listed alphabetically. If you are not sure to which class a certain method or property belongs, you can look it up in the Index.


 ClassPackageDescription
 DominoButton
view.domino.surfaceComponents.components The class work for domino visual buttong UI component in the Visual editor Representation of PrimeFaces button component Visual Editor XML: <Button Attributes width="100" height="30" disabled="false" value="Button" title=""/> PrimeFaces output: <p:button Attributes style="width:100px;height:30px;" disabled="false" value="Button" title=""/>
 DominoCalendar
view.domino.surfaceComponents.components Representation of Calendar in HTML Visual Editor XML: <Calendar Attributes selectedDate="" width="120" height="120" mode="popup" minDate="" maxDate="" pattern="MM/dd/yyyy"/> PrimeFaces output: <p:calendar Attributes value="" style="width:120px;height:120px;" mode="popup" minDate="" maxDate"" pattern="MM/dd/yyyy"/>
 DominoComputedText
view.domino.surfaceComponents.components 
 DominoInputText
view.domino.surfaceComponents.components Representation of Domino Visual inputText component. Visual Editor XML: <InputText Attributes id="" name="" width="100" height="30" value="" type="" digits="" format="" parent="" punctuated="" show="" date="" showtodaywhenappropriate="" fourdigityearfor21stcentury="" omitthisyear="" time="" zone="" calendars="" keywords="" keywordui="" choicesdialog="" listdisplayseparator="" listinputseparators="" onlyallow="" kind="" maxlength="" allowmultivalues="false" required="false" recalonchange="false" recalcchoices="false"/> Domino Visual output: <inputText Attributes id="" style="width:100px;height:30px;" value="" maxlength="" required="false" type="text" allowtabout="false" defaultfocus="false" protected="false" sign="false" storelocally="false" hidewhen="" inputvalidation="" inputtranslation="" text="" type="text" kind="editable" bgcolor="#ffffff" id="" name="" digits="" format="" punctuated="" parens="" percent="" show="" date="" allowmultivalues="false" showtodaywhenappropriate="" fourdigityear="" fourdigityearfor21stcentury="" omitthisyear="" time="" zone="" calendar="" allowtabout="false" borderstyle="inset" listdisplayseparator="comma" listinputseparators="comma" lookupaddressonrefresh="false" lookupeachchar="false" protected="false" showdelimiters="true" sign="false" storelocally="false" useappletinbrowser="false" ui="" recalconchange="false" recalcchoices="false" numberColumns="" allownew="true" multiline="true" usenotesstyle="false" firstdisplay="" onlyallow="" useappletinbrowser="false"/>
 DominoLabel
view.domino.surfaceComponents.components 
 DominoParagraph
view.domino.surfaceComponents.components Representation of div in HTML Visual Editor XML: <Div Attributes width="120" height="120" percentWidth="80" percentHeight="80" class="flexHorizontalLayout flexHorizontalLayoutLeft flexHorizontalLayoutTop"> <Script> <![CDATA[ Some information ]]> </Script> </Div> Domino output: <div Attributes style="width:120px;height:120px;" class="flexHorizontalLayout flexHorizontalLayoutLeft flexHorizontalLayoutTop"/>
 DominoSection
view.domino.surfaceComponents.components 
 DominoTable
view.domino.surfaceComponents.components 
 DominoTabView
view.domino.surfaceComponents.components Representation of PrimeFaces tabView component. Visual Editor XML: <TabView Attributes width="120" height="120" orientation="top" scrollable="false"> <tab title="Tab"> <Div class="flexHorizontalLayout flexHorizontalLayoutLeft flexHorizontalLayoutTop" wrap="false"/> </tab> </TabView> PrimeFaces output: <p:tabView Attributes style="width:120px;height:120px;" orientation="top" scrollable="false"/> <p:tab title="Tab"> <div class="flexHorizontalLayout flexHorizontalLayoutLeft flexHorizontalLayoutTop" /> </p:tab> </p:tabView>
 MainApplication
view.domino.surfaceComponents.components Representation of index.html file. Visual Editor XML: <MainApplication Attributes width="700" height="450" title="" wrap="" class="flexHorizontalLayoutWrap flexHorizontalLayoutLeft flexHorizontalLayoutTop"> <Script> <![CDATA[ Some information ]]> </Script> </MainApplication> HTML output: <?xml version="1.0" encoding="utf-8"?> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:ui="http://xmlns.jcp.org/jsf/facelets" xmlns:p="http://primefaces.org/ui"> <h:head> <link rel="stylesheet" type="text/css" href="resources/moonshine-layout-styles.css"/> <title/> </h:head> <h:body> <div class="flexHorizontalLayout flexHorizontalLayoutLeft flexHorizontalLayoutTop" style="width:700px;height:450px;"/> </h:body> </html>