SkyVisualEditor VisualforcePage Import User Manual

Size: px
Start display at page:

Download "SkyVisualEditor VisualforcePage Import User Manual"

Transcription

1 SkyVisualEditor VisualforcePage Import User Manual Ver February 26 th, 2015 TerraSky co., ltd.

2 Content 1. Preface Notice... 4 (1) Request to the customer... 4 (2) Trademarks... 4 (3) SkyVisualEditorSpecifications... 5 a. Generate Apex Class as SkyVisualEditor s original <apex:page> extensions attribute... 5 b. StandardController + extensions logic... 5 c. Support API version is d. One output for <apex:form> tag Utilization Procedure Convert to SkyVisualEditor page (1) CodeBlock component a. How to create new CodeBlock Component b. Placement Limitations c. CodeBlock Property i. Additional Attributes Property ii. Edit CodeBlock Property iii. Layout Property (2) Additional Attributes and Additional Styles a. List of components that can be set by Additional Attributes and Additional Styles b. About Additional Attributes Property c. About Additional Styles Property (3) List of problems Lists of SkyVisualEditor-VisualforceTags (1) List of Visualforce Tags that can be converted to SkyVisualEditor components (2) List of Visualforce tag Attributes that can be converted to component property a. Page Tab b. Component tabs i. InputField ii. OutputField iii. OutputLabel... 33

3 iv. SectionHeader v. PageBlock vi. PageBlockSection vii. TabPanel viii. Tab ix. DataTable x. RelatedList xi. ChatterFeed xii. SaveButton xiii. EditButton xiv. CancelButton xv. DeleteButton xvi. CustomButton xvii. FreeText xviii. BlankSpace xix. CustomLink xx. Image (3) facet import examples of DataTable Component... 69

4 1. Preface This document covers information related to SkyVisualEditor s Visualforce Import feature. This feature will allow users to import and modify Salesforce Visualforce pages on SkyVisualEditor Studio. 2. Notice (1) Request to the customer Unauthorized reproduction of this manual is forbidden. Although every attempt has been made to ensure quality of this manual, if you find any problems or errors please let us know. Please use the contents of this manual at your own risk. TerraSky cannot be held responsible for any trouble, lawsuit, etc. resulting either directly or indirectly from the use of this manual. We reserve the right to update this manual at any time without warning. (2) Trademarks TerraSky, the TerraSky logo, SkyVisualEditor and the SkyVisualEditor logo are registered trademarks of TerraSky co., Ltd. Salesforce.com, Salesforce and corresponding logos are registered trademarks of salesforce.com, Inc., and salesforce.com owns other registered and unregistered trademarks. Other names used herein may be trademarks of their respective owners.

5 (3) SkyVisualEditorSpecifications Visualforce page generated by SkyVisualEditor will have four distinctive features as below. Please be reminded that it will have the same effect to the imported Visualforce Pages. a. Generate Apex Class as SkyVisualEditor s original <apex:page> extensions attribute The Visualforce Import feature will not import Apex Class extension attributes of the Visualforce page. Please use Apex Class extension to define the logics of Apex class. b. StandardController + extensions logic Business logic is processed with Standard Controller and Apex class with extension attributes. StandardSetControllers and Custom Controllers are exempt from this and will cause an error at the import. c. Support API version is 31.0 Supported API version for the Visualforce Page import is Support will be the same as generating Visualforce Page and Apex Class. d. One output for <apex:form> tag The specification of generated Visualforce page will be to have one <apex:form>tag. Visualforce page code will be read within SkyVisualEditor s output <apex:form>tag at the import process. Therefore, every <apex:form>tag on the Visualforce will be deleted. SkyVisualEditor Chatter feed or component which is converted to RelatedList will be moved to locations below: -if placed higher than the first <apex:form> tag, it will be moved to the upper section of the <apex:form> tag in the Studio -if placed lower than the first <apex:form> tag, it will be moved to the lower section of the <apex:form> tag in the Studio. *Note: If you would like to write the code or set the component outside of <apex:form> tag, please move it manually.

6 3. Utilization Procedure Below is a summarized flow of how to import the Visualforce page to the SkyVisualEditor s Studio screen. Please see below for the procedure.

7 Select Import Visualforce page Select a page to Import will show up with the list of available Visualforce pages that are saved on Salesforce organization. Select the Visualforce page and click OK to import the page.

8 The Visualforce page will be deployed to the Studio Canvas and its name will be SVE_name of the selected Visualforce Page. Visualforce tags that can be converted to SkyVisualEditor components will appear like the image below in red box. Please refer to <5 Lists of SkyVisualEditor- VisualforceTags> conversion for more details on conversion target of Visualforce tags and its attributes. Visualforce tags which does not exist as any of the component property will be categorized as Additional Attributes. Click button of the Additional Attributes property. Please refer to < エラー! 参照元が見つかりません About Additional Attributes Property> for more details. CSS Styles that does not exist as component property will be categorized as Additional Styles. Please refer to < エラー! 参照元が見つかりません About Additional Styles Property> for more details. Please refer to < エラー! 参照元が見つかりません List of components >or more details on SkyVisualEditor s components that can be set by Additional Attributes and Additional Styles. Visualforce tags, HTML, CSS, Javascript and comments that are exempted from conversion target

9 will be displayed as CodeBlock component which will show its original code (see upper section of the image below). Please refer to < エラー! 参照元が見つかりません CodeBlock component> for more details. The lower section of the image displays alerts and errors which occurred at the Visualforce Page import. This list will help you to check errors and modify the corresponding components accordingly. Please refer to < エラー! 参照元が見つかりません List of problems> for more details. When assigning an Apex Class to the Extensions Attribute of <apex:page> tag and process it as action, please configure from Apex Class Extensions To add Please check the link below to chapter <5-1 Apex Class Extension> on SkyVisualEditor User Manual for more details. SkyVisualEditor User Manual

10 After you have modified (added, edited or deleted) your components, save or deploy the page.

11 4. Convert to SkyVisualEditor page (1) CodeBlock component Visualforce codes that could not be converted to SkyVisualEditor components will be displayed as CodeBlock component and show its original code. Users can add new CodeBlock Components to Salesforce Layout, Free Layout and Dashboard Layout. a. How to create new CodeBlock Component Find CodeBlock Component under the Component tab, then drag and drop to the canvas to create your new component.

12 An area for <apex:form> tag output will display. Please watch out for the tag s internal and external area and place the CodeBlock accordingly. Create CodeBlock Component page will appear when the CodeBlock is placed. Codes can be written just as same as writing codes for Visualforce page. Root element must be either in a tag format (e.g. <table>) or a comment format (e.g. <!-- comment -->). Click OK after the code is written to display the CodeBlock.

13 b. Placement Limitations There are limitations on where CodeBlocks can be placed. When creating for the first time (when dragging and dropping from the left) Cannot be added to Panel Grid Cell/Table column Comments cannot be placed directly below a page block section. (If a child of a CodeBlock has a comment, that CodeBlock can be placed in a page block section) When a code block contains Chatter / Related list children Can only be moved outside of the <apex:form> tag When a CodeBlock contains children other than Chatter/Related List/CodeBlock/Comment Can only be moved in the <apex:form> tag When a page block section is contained in a CodeBlock Can only be moved as the child of a page block SkyVisualEditor components can be dragged and dropped to CodeBlock.

14 c. CodeBlock Property Below is the Property for CodeBlocks. Property Detail Development Additional Attributes Set Attribute Values for root tag. Edit CodeBlock Edit Attribute Value and child element. layout Resize When checked and deployed, the CodeBlock will be placed in <apex:outputpanel> tags and output with width and hight information as below. Available only for Salesforce Layout or Dashboard Layout. Width[px] Set the width (px) for output at deploy. Check yes to enable this property. Height[px] Set the height (px) for output at deploy. Check yes to enable this property. Left (X) Set the Left(X) for output at deploy. Available only for Free Layout. Top (Y) Set the Top(Y) for output at deploy. Available only for Free Layout. i. Additional Attributes Property Click button of Additional Attributes Property to edit the attribute value of root tags, Please refer to < エラー! 参照元が見つかりません About Additional Attributes Property> for more details.

15 ii. Edit CodeBlock Property Click button of Edit CodeBlock Property to edit the CodeBlock value of root tags. Edit screen will show up to edit root tag attributes and child elements. Tags with namespace containing sve (e.g. <sve:outputlabel> can be moved around in within the area but cannot delete, register new tags, and change its attributes.layout Property

16 iii. Layout Property Size and location information of the CodeBlock can be output if the Resize Property is turned on or not shown. If so, the CodeBlock will be in <apex:outputpanel> tag. [Example of Salesforce Layout] [Example of Free Layout]

17 (2) Additional Attributes and Additional Styles a. List of components that can be set by Additional Attributes and Additional Styles Below is the list of SkyVisualEditor components which allows Property settings of Additional Attributes and Additional Styles. Tab name Component Name Additional Additional Attributes Styles Page - Component InputField OutputField OutputLabel SectionHeader PageBlock PageBlockSection Tab DataTable Facet RelatedList ChatterFeed SaveButton EditButton CancelButton DeleteButton CustomButton FreeText BlankSpace CustomLink Image CodeBlock SearchButton SelectButton ClearButton reportcommandbutton NextButton BackButton ActivationButton

18 DeleteOrderButton StartSyncButton CreatePDF Button LookUpButton

19 b. About Additional Attributes Property Attributes without component property or CodeBlock attributes can be added by Additional Attributes property. icon will appear if Additional Attributes Property exists in the subject component. Click Additional Attributes Property s button to lookup, add, edit or delete. list. Edit Attributes screen will pop up. An error will occur if the Key is blank or overlaps in the same c. About Additional Styles Property CSS Style which does not exist in component property can be added by Additional Styles. Just like writing the Style Attribute, use semicolon (;) to separate and specify more than one style.

20 (3) List of problems Below is a list of details on "FATAL" or "WARN" error messages at Visualforce page import error. Items Del Button Status Description Del Button will show when the status is WARN. Click the Del Button when you have checked the details and ready to erase the row. FATAL or WARN message will display. Pages that are not yet deployed can be saved even with FATAL. Please be aware that once the page is deployed, every FATAL problem must be fixed to save and to deploy again. Pages can be saved and deployed with WARN warning messages. Error Place Content Subject component s ID will display. If the status is FATAL, the color of the component will be in red, yellow when in WARN status. Display details of FATAL and WARN. For WARN, a related information of the code will show on the right column.

21 Having Auto Filter checked on when selecting a component will display only the related information of the component. Select the row and enter Ctrl+c to copy. Click View import log to view information that have been deleted by Del Button. Import Logs screen will display with list of all FATAL and WARN output as problems.

22 5. Lists of SkyVisualEditor-VisualforceTags (1) List of Visualforce Tags that can be converted to SkyVisualEditor components Below is a list of Visualforce tags that can be converted to SkyVisualEditor components after the page import. Please refer to < 5(2) List of Visualforce tag Attributes that can be converted to component property> for the list of Visualforce tag attributes that are converted to related components property. Exempted details will be output as WARN. *Note: Tags with an asterisk mark (*) will be excluded at the point of conversion even if it has child element. Details on the excluded tags will be an output for WARN. Visualforce Tag SVE Component Name Special Conditions Element Subelement Page apex:page apex:stylesheet, apex:includescript InputField apex:inputfield* apex:outputfield*, OutputField apex:outputtext* OutputLabel apex:outputlabel* SectionHeader apex:sectionheader* PageBlock apex:pageblock apex:pageblockbuttons PageBlockSection apex:pageblocksection Tab apex:tabpanel apex:tab Text child element directly under the page will be converted as FreeText components. Available when value is a MergeField. If the object or item could be identified, it will be read as Label Component. If not identified, it will be read as FreeText component.

23 apex:column apex:facet name="header" apex:inputfield apex:datatable,apex:pageb DataTable apex:outputfield locktable apex:outputtext apex:commandbutton apex:commandlink apex:image img RelatedList apex:relatedlist* chatter:feedwithfollowers ChatterFeed *, chatter:feed* SaveButton apex:commandbutton* action="{!save}" codes will be read as SaveButton component. EditButton action="{!edit}" codes will be read as EditButton component. CancelButton action="{!cancel}" codes will be read as CancelButton component. DeleteButton CustomButton action="{!delete}" codes will be read as DeleteButton component. Actions besides the list above will be read as CustomButton component. FreeText apex:outputtext* Tags with children element will not be converted to FreeText component. It will remain as CodeBlock. Available when the value is not a MergeField. When PageBlockSection Read as BlankSpace component when PageBlockSection contains BlankSpace contains<apex:outputpanel ></apex:outputpanel> <apex:outputpanel> without children element or attribute. CustomLink apex:commandlink* Image apex:image*, img*

24 (2) List of Visualforce tag Attributes that can be converted to component property SkyVisualEditor component property will read the attribute value of Visualforce tag as below. If the attribute does not exist as SkyVisualEditor s property, it will be written in - of the property name. Additionally, attributes that are not on this list will be not supported and excluded with WARN warning message. Division Signs on the Division category are as below: 〇 : Attribute of Visualforce tag does exist in SkyVisualEditor property, Therefore, it will be imported. :Attribute of Visualforce tag does not exist in SkyVisualEditor property. Therefore, it will be imported as Additional Attributes. W : Attributes and Child Elements that cannot be imported as Additional Attributes or Additional Styles will be excluded with WARN warning message. : Visualforce tag or attribute does not correspond with the SkyVisualEditor property. a. Page Tab Property name Divisio n* Tag name Attribute Valu e Limitations or points of caution Main Object name apex:page StandardController VisualforcePage name apex:page Name If the page does not use StandardControll er, it will be read as a code without main object. Every page will be read as SVE_name. If the Name Attribute does not exist, it will refer to its original name and read it as SVE_page

25 name Edit - DisplayLable apex:page Label Description Edit - ApexClass name - Sharing rule is active - Skip LookUp Text - Page display size (px) resolution - Width - Height - Show Header apex:page showheader Show Sidebar apex:page sidebar SubStyle apex:page tabstyle PageTitle apex:page title Set URL parameter - Activate Inline Editing - Output Field List - cache apex:page cache contenttype apex:page contenttype doctype apex:page doctype expires apex:page expires language apex:page language rendered apex:page rendered setup apex:page setup showchat apex:page showchat standardstylesheets apex:page standardstylesheets wizard apex:page wizard Activate Page mask - Input column, button - Entire Page - Specify Deployed Class - Extension Class - Test Class - Main Object Item additional acquisition -

26 Edit meta tag - Edit page style - Include setting for stylesheet apex:stylesheet Value Edit pagescript - Include setting for JavaScript apex:includescript Value Activate calculation formula - Edit calculation formula - Activate focus color - Pink, Blue - Destination after creating a new page - Destination after editing a page - Destination after deleting a page - Create PDF apex:page renderas Pdf Page size - Orientation of the paper [vertical] - Orientation of the paper [horizontal] - Set margin - increase the limit of number - - W apex:page action - W apex:page apiversion Only for renderas="pdf". Other setting values will be deleted and show WARN warning message. API version is fixed to 31.0 and will delete the setting values and show WARN warning

27 message. - W apex:page applybodytag - W apex:page applyhtmltag - W apex:page controller - W apex:page extensions - W apex:page readonly The standard feature of SkyVisualEditor is used, which will delete the setting values and show WARN warning message. The standard feature of SkyVisualEditor is used, which will delete the setting values and show WARN warning message. A page that does not use StandardControll er will be exempted and show WARN warning message. Apex Class is created by SkyVisualEditor so it will be exempted and show WARN warning message. It cannot be used in SkyVisualEditor.

28 - W apex:page recordsetvar - W apex:includescript id - W apex:includescript loadonready - W apex:stylesheet id Setting values will be deleted and show WARN warning message. It cannot be used in SkyVisualEditor. Setting values will be deleted and show WARN warning message.

29 b. Component tabs i. InputField Property name Di vi si on * Tag name Attribute Value ID apex:inputfield id Reference API name for object API reference name for item apex:inputfield value Width [px] apex:inputfield style width Height [px] apex:inputfield style height Font Color apex:inputfield style color Font Size apex:inputfield style font-size Font Weight apex:inputfield style font-weight Align Horizontal apex:inputfield style text-align IME Mode apex:inputfield style ime-mode Required apex:inputfield required StyleClass apex:inputfield styleclass Help Mode - - apex:pageblocksec Help Text tionitem helptext Limitations or points of caution The value of apex:page StandardControll er will be read as the object s field name. Available only in pixels. Other metrics will be read as Additional Styles. Available only in pixels. Other metrics will be read as Additional Styles. If the parent element of apex:inputfield

30 Action - JavaScript apex:inputfield onblur JavaScript apex:inputfield onchange JavaScript apex:inputfield onclick JavaScript apex:inputfield ondblclick JavaScript apex:inputfield onfocus JavaScript apex:inputfield onkeydown JavaScript apex:inputfield onkeypress JavaScript apex:inputfield onkeyup JavaScript apex:inputfield onmousedown JavaScript apex:inputfield onmousemove JavaScript apex:inputfield onmouseout JavaScript apex:inputfield onmouseover JavaScript apex:inputfield onmouseup JavaScript apex:inputfield onselect Item display label apex:inputfield label Prefix - - Font Color - - Font Size - - Font Weight - - Suffix - - Font Color - - Font Size - - Font Weight - - Look Up - Select Custom LookUp screen - - Select Action - Use default check value - Default Check Value - is apex:pageblocks ectionitem, the helptext attribute will be read as sve:inputfield attribute.

31 Set Width - Radio Button - Display null - Checkbox - Display Layout - Decimal separator - Display link to DateStamp - apex:inputfield list - apex:inputfield rendered - apex:inputfield showdatepicker - apex:inputfield taborderhint - apex:inputfield type

32 ii. OutputField Property name Di vi si on * Tag name Attribute Value ID apex:outputfield id Reference API name for object Item Display Labe Reference API name for item apex:outputfield value Set Width Width [px] apex:outputfield style width HTML Escape apex:outputtext escape Font Color apex:outputfield style color Font Size apex:outputfield style font-size Font Weight apex:outputfield style font-weight Underline apex:outputfield style text-decoration Align Horizontal apex:outputfield style text-align Display as link - - Open a link in a new window - - Set Height Height [px] apex:outputfield style height Display overflow apex:outputfield style overflow Radio Button Display Layout Checkbox - apex:outputfield dir - apex:outputfield lang - apex:outputfield rendered - apex:outputfield styleclass - apex:outputfield title Limitations or points of caution Available only for Underline value. Otherwise they will be read as Additional Styles.

33 - apex:outputtext dir - apex:outputtext label - apex:outputtext lang - apex:outputtext rendered - apex:outputtext styleclass - apex:outputtext title Display Label value apex:outputfield label iii. OutputLabel Di vi Property name si on Tag name Attribute Value Limitations or points of caution * ID apex:outputlabel id Reference API name for object apex:outputlabel value Display Item Label apex:outputlabel value Reference API name for item apex:outputlabel value Edit Value - Value apex:outputlabel Text Child HTML Escape apex:outputlabel escape Font Color apex:outputlabel Style color Font Size apex:outputlabel Style font-size Font Weight apex:outputlabel Style Bold Tooltip apex:outputlabel Title StyleClass apex:outputlabel styleclass - apex:outputlabel accesskey - apex:outputlabel Dir - apex:outputlabel For - apex:outputlabel Lang - apex:outputlabel onblur - W apex:outputlabel onclick Only used when the object, fields are able to be analyzed to a certain degree, Otherwise they will be read as FreeText. The standard feature of SkyVisualEditor is used,

34 which will delete the setting values and show WARN warning message. - apex:outputlabel ondblclick - apex:outputlabel onfocus - apex:outputlabel onkeydown - apex:outputlabel onkeypress - apex:outputlabel onkeyup - apex:outputlabel onmousedown - apex:outputlabel onmousemove - apex:outputlabel onmouseout - apex:outputlabel onmouseover - apex:outputlabel onmouseup The standard feature of SkyVisualEditor is used, - W apex:outputlabel rendered - apex:outputlabel tabindex which will delete the setting values and show WARN warning message. iv. SectionHeader Di vi Property name si on * Tag name Attribute Value Edit Value - Title apex:sectionheader Title Subtitle apex:sectionheader Subtitle Description apex:sectionheader Description - apex:sectionheader Id - apex:sectionheader Help - apex:sectionheader printurl - apex:sectionheader Rendered Limitations or points of caution

35 v. PageBlock Di Property name vis io Tag name Attribute Valu e Limitations or points of caution n* Wrapper ID - ID apex:pageblock Id Title apex:pageblock Title Display mode apex:pageblock mode Show Conditions apex:pageblock rendered Display Button Area apex:pageblockbuttons location Set actionregion - - ActionRegion codes will be read as CodeBlock. - apex:pageblock Dir - apex:pageblock helptitle - apex:pageblock helpurl - apex:pageblock Lang - apex:pageblock onclick - apex:pageblock ondblclick - apex:pageblock onkeydown - apex:pageblock onkeypress - apex:pageblock onkeyup - apex:pageblock onmousedown - apex:pageblock onmousemove - apex:pageblock onmouseout - apex:pageblock onmouseover - apex:pageblock onmouseup - apex:pageblock tabstyle - W apex:pageblockbuttons Dir - W apex:pageblockbuttons Id - W apex:pageblockbuttons Lang - W apex:pageblockbuttons onclick - W apex:pageblockbuttons ondblclick - W apex:pageblockbuttons onkeydown - W apex:pageblockbuttons onkeypress - W apex:pageblockbuttons onkeyup - W apex:pageblockbuttons onmousedown

36 - W apex:pageblockbuttons onmousemove - W apex:pageblockbuttons onmouseout - W apex:pageblockbuttons onmouseover - W apex:pageblockbuttons onmouseup - W apex:pageblockbuttons rendered - W apex:pageblockbuttons style - W apex:pageblockbuttons styleclass - W apex:pageblockbuttons Title

37 vi. PageBlockSection Di Property name vi si on Tag name Attribute Valu e Limitations or points of caution * Wrapper ID - ID apex:pageblocksection id Title apex:pageblocksection title HTML Escape - Number of columns apex:pageblocksection columns Show Header apex:pageblocksection showheader Show Collapse apex:pageblocksection collapsible Set Header Color - Font Color - Background Color - Types of frame border - Frame border width - Frame border color - Corner roundness - Show Conditions apex:pageblocksection rendered Set actionregion - - actionregion codes will be read as CodeBlock. - apex:pageblocksection dir - apex:pageblocksection lang - apex:pageblocksection onclick - apex:pageblocksection ondblclick - apex:pageblocksection onkeydown - apex:pageblocksection onkeypress - apex:pageblocksection onkeyup - apex:pageblocksection onmousedown - apex:pageblocksection onmousemove - apex:pageblocksection onmouseout - apex:pageblocksection onmouseover - apex:pageblocksection onmouseup

38 vii. TabPanel Di Property name sp la Tag name Attribute Valu e Limit and point of precautions y* Wrapper ID - ID apex:tabpanel Id Show Conditions apex:tabpanel Rendered - apex:tabpanel contentclass Information about colors will be set in - W apex:tabpanel activetabclass SkyVisualEditor. Setting values will be deleted and show WARN warning message. Information about colors will be set in - W apex:tabpanel inactivetabclass SkyVisualEditor. Setting values will be deleted and show WARN warning message. - apex:tabpanel contentstyle - apex:tabpanel Dir - apex:tabpanel disabledtabclass - apex:tabpanel headeralignment - apex:tabpanel headerclass - apex:tabpanel headerspacing - apex:tabpanel Height - apex:tabpanel Immediate - apex:tabpanel Lang - apex:tabpanel Onclick - apex:tabpanel Ondblclick - apex:tabpanel Onkeydown - apex:tabpanel Onkeypress - apex:tabpanel Onkeyup - apex:tabpanel Onmousedown - apex:tabpanel Onmousemove - apex:tabpanel Onmouseout - apex:tabpanel Onmouseover - apex:tabpanel Onmouseup - apex:tabpanel rerender - apex:tabpanel selectedtab

39 - apex:tabpanel Style - apex:tabpanel switchtype - apex:tabpanel tabclass - apex:tabpanel Title - apex:tabpanel Value - apex:tabpanel Width W apex:tabpanel styleclass Setting values besides switchtype="client" will be deleted and show WARN warning message. The standard feature of SkyVisualEditor is used, which will delete the setting values and show WARN warning message.

40 viii. Tab Property name Di vi si on * Tag name Attribute Active Tab Color - Inactive Tab Color - StyleClass apex:tab styleclass ID apex:tab Id Show Conditions apex:tab rendered Title apex:tab Label Theme - - apex:tab disabled - apex:tab Focus - apex:tab immediate - apex:tab label Width - apex:tab Name - apex:tab onclick - apex:tab oncomplete - apex:tab ondblclick - apex:tab onkeydown - apex:tab onkeypress - apex:tab onkeyup - apex:tab onmousedown - apex:tab onmousemove - apex:tab onmouseout - apex:tab onmouseover - apex:tab onmouseup - apex:tab ontabenter - apex:tab ontableave - apex:tab rerender - apex:tab status - apex:tab Style - apex:tab switchtype - apex:tab timeout Valu e Limitations or points of caution Setting values besides switchtype="client" will be deleted and show WARN warning message.

41 - apex:tab Title ix. DataTable 1 <apex:datatable> Di vi Property name si on * Tag name Attribute Value Wrapper ID - ID apex:datatable Id Limitations or points of caution Pages will be imported as standard Controller s object (Tables without relations) if it matches with all of the conditions below. Object Label Name apex:datatable Value Var Reference Item Label Name Reference API name for reference item - apex:datatable value Adjust to page width size Width [px] apex:datatable width -if <apex:page> tag recordsetvar attribute exists. -if <apex:page> tag extensions attribute does not exist. -if <apex:datatable> tag value and <apex:page> tag recordsetvar match. Set as SkyVisualEditor s default value.

42 apex:datatable style Width Set height Height [px] apex:datatable style height Adjust row height Header row height [px] Detail row height [px] Maximum number of records apex:datatable rows Set Output Tag Fix Header Theme Header Color Show Record Counts - Paging is available - Show number of Pages - Add Row Button is available - Edit the value of Add Row - Read without metric unit or in pixel only. Otherwise the setting value will be deleted and show WARN warning message. If the width attribute exists, setting values will be deleted and show WARN warning message. Metric unit will be in pixel. Otherwise it will be read as Additional Styles. Metric unit will be in pixel. Otherwise it will be read as Additional Styles. Default setting will be 500 if rows setting does not exist. Fix DataTable Theme will be read as none as default

43 Button Add Row Button Value - Set the number of rows to add - Initial number of rows to add - Delete row button is available - Edit the value of Delete Button - Delete Button Value - Bulk Edit - Edit the value of Bulk Edit button - Bulk Edit Button Value - Select Delete - Edit the value of Select Delete Button - Select Delete Button Value - Clone Row Button is available - Edit the value of Clone Button - Clone Button Value - Show checkbox column - Show Table message - Set Table Message - Search inside Table - Release required Item - Filter condition - Lookup Item - Select Custom Lookup screen - Parameter - Edit value of Acquire Master Button - Acquire Master Button Value - JavaScript - Object Item additional acquisition - Show Conditions apex:datatable rendered Frame Border Width StyleClass apex:datatable styleclass - W apex:datatable columns Number of columns is

44 - apex:datatable align - apex:datatable bgcolor - W apex:datatable border - apex:datatable captionclass - apex:datatable captionstyle - apex:datatable cellpadding - apex:datatable cellspacing - apex:datatable columnclasses - W apex:datatable columnswidth - apex:datatable dir - apex:datatable first - apex:datatable footerclass - apex:datatable frame - apex:datatable headerclass - apex:datatable lang - apex:datatable onclick - apex:datatable ondblclick - apex:datatable onkeydown - apex:datatable onkeypress - apex:datatable onkeyup - apex:datatable onmousedown - apex:datatable onmousemove - apex:datatable onmouseout - apex:datatable onmouseover - apex:datatable onmouseup - apex:datatable onrowclick - apex:datatable onrowdblclick - apex:datatable onrowmousedown - apex:datatable onrowmousemove - apex:datatable onrowmouseout - apex:datatable onrowmouseover set by SkyVisualEditor. Setting values will be deleted and show WARN warning message.

45 - apex:datatable onrowmouseup - apex:datatable rowclasses - apex:datatable rules - apex:datatable style - apex:datatable summary - apex:datatable title - W apex:datatable var Set as SkyVisualEditor s default value. Setting value will be deleted and show WARN warning message. (i) facet Property name Di vi si on * Tag name Attribute Value ID apex:column id Adjust to the width of description - Width [px] apex:column width Header name apex:column headervalue Header name apex:facet name header Font Color apex:column style color Header align [horizontal] - Limitations or points of caution Read without metric unit or in pixel only. Otherwise the setting value will be deleted and show WARN warning message. The child element s <apex:facet name="header">***</apex:fac et> tag will be prioritized if it exisits, and delete the setting value. WARN wanrning message will show.

46 Align Horizontal apex:column style text-align Align Vertical apex:column style vertical-align - apex:column breakbefore - apex:column colspan - apex:column dir - apex:column footerclass - apex:column footervalue - apex:column headerclass - apex:column lang - apex:column onclick - apex:column ondblclick - apex:column onkeydown - apex:column onkeypress - apex:column onkeyup - apex:column onmousedown - apex:column onmousemove - apex:column onmouseout - apex:column onmouseover - apex:column onmouseup - W apex:column rendered - apex:column rowspan - apex:column styleclass - apex:column title

47 2 <apex:pageblocktable> Di vi Property name si on * Tag name Attribute Wrapper ID - ID apex:pageblocktable Id Object Label Name Var Reference Item Label Name Valu e Limitations or points of caution Set as SkyVisualEditor s default value. Pages will be imported as standard Controller s object (Tables without relations) if it matches with all of the conditions below. Reference API name for reference -if <apex:page> tag apex:pageblocktable Value item recordsetvar attribute exists. -if <apex:page> tag extensions attribute does not exist. -if <apex:datatable> tag value and <apex:page> tag recordsetvar match. - apex:pageblocktable Value Adjust row height Header row height [px] Detail row height [px] Number of columns Maximum number of records apex:pageblocktable rows Set Output Tag Fix PageBlock Table Fix Header Show Record Counts - Paging is available -

48 Show number of Pages - Add Row Button is available - Edit the value of Add Row Button - Add Row Button Value - Set the number of rows to add - Initial number of rows to add - Delete row button is available - Edit the value of Delete Button - Delete Button Value - Bulk Edit - Bulk Edit Button Value - Bulk Edit Value - Select Delete - Edit the value of Select Delete Button - Select Delete Button Value - Clone Row Button is available - Edit Clone Row Button is available - Clone Button Value - Show Table message - テーブルメッセージ設定 - Release required Item - Filter condition - Lookup Item - Select Custom LookUp screen - Parameter Edit value of Acquire Master Button Acquire Master Button Value JavaScript Object Item additional acquisition Show Conditions apex:pageblocktable rendered StyleClass apex:pageblocktable styleclass W apex:pageblocktable columns Number of columns is set by SkyVisualEditor. Setting values will be deleted and show WARN

49 warning message. - apex:pageblocktable align - apex:pageblocktable border - apex:pageblocktable captionclass - apex:pageblocktable captionstyle - apex:pageblocktable cellpadding - apex:pageblocktable cellspacing - apex:pageblocktable columnclasses - W apex:pageblocktable columnswidth - apex:pageblocktable dir - apex:pageblocktable first - apex:pageblocktable footerclass - apex:pageblocktable frame - apex:pageblocktable headerclass - apex:pageblocktable lang - apex:pageblocktable onclick - apex:pageblocktable ondblclick - apex:pageblocktable onkeydown - apex:pageblocktable onkeypress - apex:pageblocktable onkeyup - apex:pageblocktable onmousedown - apex:pageblocktable onmousemove - apex:pageblocktable onmouseout - apex:pageblocktable onmouseover - apex:pageblocktable onmouseup - apex:pageblocktable onrowclick - apex:pageblocktable onrowdblclick - apex:pageblocktable onrowmousedown - apex:pageblocktable onrowmousemove - apex:pageblocktable onrowmouseout - apex:pageblocktable onrowmouseover - apex:pageblocktable onrowmouseup - apex:pageblocktable rowclasses - apex:pageblocktable rules - apex:pageblocktable style - apex:pageblocktable summary - apex:pageblocktable title

50 - apex:pageblocktable value - W apex:pageblocktable var - apex:pageblocktable width Set as SkyVisualEditor s default value. Setting value will be deleted and show WARN warning message.

51 (i) facet Property name Di vi si Tag name Attribute Value Limitations or points of caution on * ID apex:column Id Header Mode If the header name exists and no direct input, it will be set as Show Label. Header Name apex:column headervalue If child element of <apex:facet name="header">***</apex:facet> exists, the Header Mode described above will be prioritized. The setting value will be deleted and show WARN warning message. Header Name apex:facet name header Font Color apex:column Style color Header Align [horizontal] - Align Horizontal apex:column Style text-align Align Vertical apex:column Style vertical-align - apex:column breakbefore - apex:column colspan - apex:column Dir - apex:column footerclass - apex:column footervalue - apex:column headerclass - apex:column Lang - apex:column onclick - apex:column ondblclick - apex:column onkeydown - apex:column onkeypress - apex:column onkeyup - apex:column onmousedown - apex:column onmousemove - apex:column onmouseout - apex:column onmouseover

52 - apex:column onmouseup - W apex:column rendered - apex:column rowspan - apex:column styleclass - apex:column Title - apex:column width x. RelatedList Property name Di vi si on * Tag name Attribute Value ID apex:relatedlist id Reference API name for object - Object Label Name - Child relation name apex:relatedlist list Number of rows apex:relatedlist page Size Edit Title - Title apex:relatedlist title - apex:relatedlist rendered - apex:relatedlist subject Limitations or points of caution

53 xi. ChatterFeed Di Property name vis io Tag name Attribute Valu e Limitations or points of caution n* ID chatter:feedwithfollowers id chatter:feed id Set Height - Height [px] - Show followers Show Header chatter:feedwithfollowers showheader - chatter:feedwithfollowers oncomplete - chatter:feedwithfollowers rendered - chatter:feedwithfollowers rerender The standard feature of SkyVisualEditor is used, which - W chatter:feedwithfollowers entityid will delete the setting values and show WARN warning message. - chatter:feed showpublisher - chatter:feed oncomplete - chatter:feed rendered - chatter:feed rerender The standard feature of SkyVisualEditor is used, which - W chatter:feed entityid will delete the setting values and show WARN warning message. - chatter:feed feeditemtype

54 xii. SaveButton Property name Di vi si on * Tag name Attribute Value ID apex:commandbutton id Edit Value - Value apex:commandbutton value Tooltip apex:commandbutton title Set width - - Width [px] apex:commandbutton style width Button Style - - Font Color apex:commandbutton style color Font Weight apex:commandbutton style font-weight StyleClass apex:commandbutton styleclass - apex:commandbutton accesskey - W apex:commandbutton action - apex:commandbutton alt - apex:commandbutton dir - apex:commandbutton disabled - apex:commandbutton image - apex:commandbutton immediate - apex:commandbutton lang - apex:commandbutton onblur - apex:commandbutton onclick - apex:commandbutton oncomplete - apex:commandbutton ondblclick - apex:commandbutton onfocus - apex:commandbutton onkeydown - apex:commandbutton onkeypress - apex:commandbutton onkeyup - apex:commandbutton onmousedown Limitations or points of caution Metric unit will be in pixel. Otherwise it will be read as Additional Styles. action="{!save}" will be saved as SaveButton.

55 - apex:commandbutton onmousemove - apex:commandbutton onmouseout - apex:commandbutton onmouseover - apex:commandbutton onmouseup - W apex:commandbutton rendered - apex:commandbutton rerender - apex:commandbutton status - apex:commandbutton tabindex - apex:commandbutton timeout

56 xiii. EditButton Property name Di vi si on * Tag name Attribute Value ID apex:commandbutton Id Edit Value - - Value apex:commandbutton value Tooltip apex:commandbutton title Set width - - Width [px] apex:commandbutton style width Button Style - - Font Color apex:commandbutton style color Font Weight apex:commandbutton style font-weight StyleClass apex:commandbutton styleclass - apex:commandbutton accesskey - W apex:commandbutton action - apex:commandbutton Alt - apex:commandbutton Dir - apex:commandbutton disabled - apex:commandbutton image - apex:commandbutton immediate - apex:commandbutton lang - apex:commandbutton onblur - apex:commandbutton onclick - apex:commandbutton oncomplete - apex:commandbutton ondblclick - apex:commandbutton onfocus - apex:commandbutton onkeydown - apex:commandbutton onkeypress - apex:commandbutton onkeyup - apex:commandbutton onmousedown Limitations or points of caution Metric unit will be in pixel. Otherwise it will be read as Additional Styles. action="{!edit}" will be read as EditButton.

57 - apex:commandbutton onmousemove - apex:commandbutton onmouseout - apex:commandbutton onmouseover - apex:commandbutton onmouseup - apex:commandbutton rendered - apex:commandbutton rerender - apex:commandbutton status - apex:commandbutton tabindex - apex:commandbutton timeout

58 xiv. CancelButton Property name Di vi si on * Tag name Attribute Value ID apex:commandbutton id Edit Value - - Value apex:commandbutton value Tooltip apex:commandbutton title Set width - - Width [px] apex:commandbutton style Width Button Style - - Font Color apex:commandbutton style Color Font Weight apex:commandbutton style font-weight Check Scree n - Edit Check Screen Message - - Check Screen Message - - StyleClass apex:commandbutton styleclass - apex:commandbutton accesskey - W apex:commandbutton action - apex:commandbutton alt - apex:commandbutton dir - apex:commandbutton disabled - apex:commandbutton image - apex:commandbutton immediate - apex:commandbutton lang - apex:commandbutton onblur - apex:commandbutton onclick - apex:commandbutton oncomplete Limitations or points of caution Metric unit will be in pixel. Otherwise it will be read as Additional Styles. action="{!cancel}" will be read as CancelButton.

59 - apex:commandbutton ondblclick - apex:commandbutton onfocus - apex:commandbutton onkeydown - apex:commandbutton onkeypress - apex:commandbutton onkeyup - apex:commandbutton onmousedown - apex:commandbutton onmousemove - apex:commandbutton onmouseout - apex:commandbutton onmouseover - apex:commandbutton onmouseup - W apex:commandbutton rendered - apex:commandbutton rerender - apex:commandbutton status - apex:commandbutton tabindex - apex:commandbutton timeout

60 xv. DeleteButton Property name Di vi si on * Tag name Attribute Value ID apex:commandbutton id Edit Value - - Value apex:commandbutton value Tooltip apex:commandbutton title Set width - - Width[px] apex:commandbutton style width Button Style - - Font Color apex:commandbutton style color Font Weight apex:commandbutton style font-weight StyleClass apex:commandbutton styleclass - apex:commandbutton accesskey - W apex:commandbutton action - apex:commandbutton alt - apex:commandbutton dir - apex:commandbutton disabled - apex:commandbutton image - apex:commandbutton immediate - apex:commandbutton lang - apex:commandbutton onblur - apex:commandbutton onclick - apex:commandbutton oncomplete - apex:commandbutton ondblclick - apex:commandbutton onfocus - apex:commandbutton onkeydown - apex:commandbutton onkeypress - apex:commandbutton onkeyup - apex:commandbutton onmousedown Limitations or points of caution Metric unit will be in pixel. Otherwise it will be read as Additional Styles. action="{!delete}" will be read as DeleteButton

61 - apex:commandbutton onmousemove - apex:commandbutton onmouseout - apex:commandbutton onmouseover - apex:commandbutton onmouseup - W apex:commandbutton rendered - apex:commandbutton rerender - apex:commandbutton status - apex:commandbutton tabindex - apex:commandbutton timeout

62 xvi. CustomButton Property name Di vi si on * Tag name Attribute Value Wrapper ID - ID apex:commandbutton id Show Conditions apex:commandbutton rendered Value apex:commandbutton value Tooltip apex:commandbutton title Set width - - Width [px] apex:commandbutton style Width Button Style - - Font Color apex:commandbutton style Color Font Weight apex:commandbutton style font-weight Limitations or points of caution Metric unit will be in pixel. Otherwise it will be read as Additional Styles. Select Movement - Set Desitination - Open a link in a new window - OnClick apex:commandbutton onclick Action W apex:commandbutton action OnCompleate apex:commandbutton oncomplete Set Table Region StyleClass apex:commandbutton styleclass immediate apex:commandbutton immediate rerender apex:commandbutton rerender - apex:commandbutton accesskey - apex:commandbutton alt If the action is not Save/Edit/Cancel/D elete, it will be read as CustomButton.

63 - apex:commandbutton dir - apex:commandbutton disabled - apex:commandbutton image - apex:commandbutton lang - apex:commandbutton onblur - apex:commandbutton ondblclick - apex:commandbutton onfocus - apex:commandbutton onkeydown - apex:commandbutton onkeypress - apex:commandbutton onkeyup - apex:commandbutton onmousedown - apex:commandbutton onmousemove - apex:commandbutton onmouseout - apex:commandbutton onmouseover - apex:commandbutton onmouseup - W apex:commandbutton status - apex:commandbutton tabindex - apex:commandbutton timeout The standard feature of SkyVisualEditor is used, which will delete the setting values and show WARN warning message.

64 xvii. FreeText Property name Di vi si on * Tag name Attribute Value Wrapper ID - ID apex:outputtext Id Width [px] - Height [px] - Value apex:outputtext value apex:page Text Child Font Color apex:outputtext style color Font Size apex:outputtext style font-size Font Weight apex:outputtext style font-weight Underline apex:outputtext style text-decoration:underline Show Conditions apex:outputtext rendered StyleClass apex:outputtext styleclass - apex:outputtext Dir - W apex:outputtext escape - apex:outputtext label - apex:outputtext Lang - apex:outputtext Title Limitations or points of caution If the page has child element (such as <apex:param >), it will not be converted to components. It will import <apex:outputtext> as CodeBlock. Text child element directly under the page tags will be converted as FreeText components. Available only for Underline. Otherwise they will be read as Additional Styles.

65 xviii. BlankSpace Property name Divisio n* Tag name Attribut e Value Limitations or points of caution - apex:outputpanel - <apex:outputpanel ></apex:outputpanel> will be read as BlankSpace within Page Block Section. xix. CustomLink Di Property name vi si Tag name Attribute Value Limitations or points of caution on * Wrapper ID - ID apex:commandlink id Show Conditions apex:commandlink rendered apex:commandlink value Line breaks and tabs if a Text Child will be Value apex:commandlink Text Child replaced to space and read it as value + child text. (Child Text will be deleted) Font Color apex:commandlink style color Font Size apex:commandlink style font-size Font Weight apex:commandlink style font-weight Align Horizontal - Select Movement - Set Destination Open a link in a new window - - OnClick apex:commandlink onclick action W apex:commandlink action OnComplete apex:commandlink oncomplete

66 - Set Table Region StyleClass apex:commandlink styleclass - apex:commandlink accesskey - apex:commandlink charset - apex:commandlink coords - apex:commandlink dir - apex:commandlink hreflang - apex:commandlink immediate - apex:commandlink lang - apex:commandlink onblur - apex:commandlink oncomplete - apex:commandlink ondblclick - apex:commandlink onfocus - apex:commandlink onkeydown - apex:commandlink onkeypress - apex:commandlink onkeyup - apex:commandlink onmousedown - apex:commandlink onmousemove - apex:commandlink onmouseout - apex:commandlink onmouseover - apex:commandlink onmouseup - apex:commandlink rel - apex:commandlink rerender - apex:commandlink rev - apex:commandlink shape - apex:commandlink status - apex:commandlink tabindex - apex:commandlink target - apex:commandlink timeout - apex:commandlink title - apex:commandlink type

67 xx. Image Property name Di vi si Tag name Attribute Value Limitations or points of caution on * Wrapper ID - ID apex:image Id Img Id Show apex:image Rendered Conditions Img Rendered Image Source apex:image Value Read as select image from outside the Web Page Img Src Read without metric unit or in pixel only. Width [px] apex:image Width Otherwise the setting value will be deleted and show WARN warning message. Img Style width Read without metric unit or in pixel only. Height [px] apex:image Height Otherwise the setting value will be deleted and show WARN warning message. Img Style height Align Horizontal - Aspect Ratio - JavaScript apex:image Onclick JavaScript apex:image ondblclick JavaScript apex:image onkeydown JavaScript apex:image onkeypress JavaScript apex:image Onkeyup JavaScript apex:image onmousedown JavaScript apex:image onmousemove JavaScript apex:image onmouseout JavaScript apex:image onmouseover JavaScript apex:image onmouseup JavaScript Img Onclick JavaScript Img ondblclick

68 JavaScript Img onkeydown JavaScript Img onkeypress JavaScript Img Onkeyup JavaScript Img onmousedown JavaScript Img onmousemove JavaScript Img onmouseout JavaScript Img onmouseover JavaScript Img onmouseup StyleClass apex:image styleclass - apex:image Alt - apex:image Dir - apex:image Ismap - apex:image Lang - apex:image Longdesc - apex:image Style - apex:image Title - apex:image url - apex:image Usemap - apex:image Style - apex:image Title

69 (3) facet import examples of DataTable Component <apex:datatable> tag and <apex:pageblocktable> tag will be imported as DataTable component. Child elements that can be imported as facet are as below: [Import pattern for header] apex:column attribute value Example: <apex:column value="{!item.reason}" /> apex:column attribute headervalue Example: <apex:column value="{!item.priority}" headervalue="priority"/> apex:facet name= header child element Example: <apex:facet name="header">name</apex:facet> <apex:facet name="header"> <apex:outputtext value="{!$objecttype.case.fields.createddate.label}" /> </apex:facet> [Import pattern for value] apex:column attribute value Example: <apex:column value="{!item.reason}" /> apex:column text child element Example: <apex:column headervalue="case Number"> {!item.casenumber} </apex:column> apex:column child element Example: <apex:column headervalue="casenumber"> <apex:outputfield value="{!item.createddate}" /> </apex:column>

Salesforce DEV-501. Apex and Visualforce Controllers (DEV501)

Salesforce DEV-501. Apex and Visualforce Controllers (DEV501) Salesforce DEV-501 Apex and Visualforce Controllers (DEV501) http://killexams.com/exam-detail/dev-501 C. apex:inputcheckbox D. apex:actionstatus QUESTION: 222 A label for an input or output field. Use

More information

SkyVisualEditor Salesforce1 Support Guide

SkyVisualEditor Salesforce1 Support Guide SkyVisualEditor Salesforce1 Support Guide Ver 1.0.0.3 April 6 th, 2015 TerraSky co., Ltd. Page 1 of 19 Table of Contents 1. Preface... 3 2. Notice... 3 (1) Request to the customer... 3 (2) Trademarks...

More information

AppComponent Package Slide Show User Manual

AppComponent Package Slide Show User Manual AppComponent Package Slide Show User Manual Ver 1.2.0.0 6 th April, 2015 TerraSky co., Ltd Page 1 of 14 Content 1. Preface... 3 2. Notice... 3 (1) Conditions of Use... 3 (2) Request to the customer...

More information

SkyVisualEditor Default AppComponent Package User Manual

SkyVisualEditor Default AppComponent Package User Manual SkyVisualEditor Default AppComponent Package User Manual Ver 2.19.0 December 17 th, 2017 TerraSky co., Ltd. Page 1 of 29 Table of Contents 1. Preface... 4 2. Notice... 4 (1) Conditions of Use... 4 (2)

More information

JSF - H:INPUTSECRET. Class name of a validator that s created and attached to a component

JSF - H:INPUTSECRET. Class name of a validator that s created and attached to a component http://www.tutorialspoint.com/jsf/jsf_inputsecret_tag.htm JSF - H:INPUTSECRET Copyright tutorialspoint.com The h:inputsecret tag renders an HTML input element of the type "password". JSF Tag

More information

Name Related Elements Type Default Depr. DTD Comment

Name Related Elements Type Default Depr. DTD Comment Legend: Deprecated, Loose DTD, Frameset DTD Name Related Elements Type Default Depr. DTD Comment abbr TD, TH %Text; accept-charset FORM %Charsets; accept FORM, INPUT %ContentTypes; abbreviation for header

More information

JSF - H:PANELGRID. JSF Tag. Rendered Output. Tag Attributes. The h:panel tag renders an HTML "table" element. Attribute & Description.

JSF - H:PANELGRID. JSF Tag. Rendered Output. Tag Attributes. The h:panel tag renders an HTML table element. Attribute & Description. http://www.tutorialspoint.com/jsf/jsf_panelgrid_tag.htm JSF - H:PANELGRID Copyright tutorialspoint.com The h:panel tag renders an HTML "table" element. JSF Tag

More information

Visualforce Developer's Guide

Visualforce Developer's Guide Version 21.0: Spring '11 Visualforce Developer's Guide Last updated: April 3, 2011 Copyright 2000-2011 salesforce.com, inc. All rights reserved. Salesforce.com is a registered trademark of salesforce.com,

More information

JSF - H:SELECTONERADIO

JSF - H:SELECTONERADIO JSF - H:SELECTONERADIO http://www.tutorialspoint.com/jsf/jsf_selectoneradio_tag.htm Copyright tutorialspoint.com The h:selectoneradio tag renders a set of HTML input element of type "radio", and format

More information

JSF - H:SELECTONEMENU

JSF - H:SELECTONEMENU JSF - H:SELECTONEMENU http://www.tutorialspoint.com/jsf/jsf_selectonemenu_tag.htm Copyright tutorialspoint.com The h:selectonemenu tag renders an HTML input element of the type "select" with size not specified.

More information

Visualforce Developer's Guide

Visualforce Developer's Guide Version 17.0: Winter '10 Visualforce Developer's Guide Last updated: November 9, 2009 Copyright 2000-2009 salesforce.com, inc. All rights reserved. Salesforce.com is a registered trademark of salesforce.com,

More information

Visualforce Workbook

Visualforce Workbook Version 5: Spring '13 Visualforce Workbook Last updated: March 8, 2013 Copyright 2000 2013 salesforce.com, inc. All rights reserved. Salesforce.com is a registered trademark of salesforce.com, inc., as

More information

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS MOST TAGS CLASS Divides tags into groups for applying styles 202 ID Identifies a specific tag 201 STYLE Applies a style locally 200 TITLE Adds tool tips to elements 181 Identifies the HTML version

More information

Create Mask File Part

Create Mask File Part Create Mask File Part Contents Contents 1 How to set Part conditions... 1 1.1 Setting conditions... 1 1.2 Performing mask processing... 3 Create Mask File Part i 1.1 Setting conditions エラー! 参照元が見つかりません

More information

Installation and Configuration Manual

Installation and Configuration Manual Installation and Configuration Manual IMPORTANT YOU MUST READ AND AGREE TO THE TERMS AND CONDITIONS OF THE LICENSE BEFORE CONTINUING WITH THIS PROGRAM INSTALL. CIRRUS SOFT LTD End-User License Agreement

More information

Layout and display. STILOG IST, all rights reserved

Layout and display. STILOG IST, all rights reserved 2 Table of Contents I. Main Window... 1 1. DEFINITION... 1 2. LIST OF WINDOW ELEMENTS... 1 Quick Access Bar... 1 Menu Bar... 1 Windows... 2 Status bar... 2 Pop-up menu... 4 II. Menu Bar... 5 1. DEFINITION...

More information

Canvas & Brush Reference. Source: stock.xchng, Maarten Uilenbroek

Canvas & Brush Reference. Source: stock.xchng, Maarten Uilenbroek Canvas & Brush Reference Source: stock.xchng, Maarten Uilenbroek Canvas Hierarchy WACanvas WAHtmlCanvas WARenderCanvas WAStaticHtmlCanvas Brush Hierarchy WABrush WACompound WADateInput WATimeInput WATagBrush

More information

OPRO Japan Co., Ltd.

OPRO Japan Co., Ltd. OPRO Japan Co., Ltd. 6F, Shibashin-Mita Bldg., 3-43-15, Shiba, Minato-Ku, Tokyo, 105-0014, Japan. Web: www.opro.net/en Tel +81 3-5765-6510 Fax: +81 3-5765-6560 Copyright OPRO Japan Co., Ltd. 2010. All

More information

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Structuring Documents for the Web 1

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Structuring Documents for the Web 1 Introduction Chapter 1: Structuring Documents for the Web 1 A Web of Structured Documents 1 Introducing HTML and XHTML 2 Tags and Elements 4 Separating Heads from Bodies 5 Attributes Tell Us About Elements

More information

COPYRIGHTED MATERIAL. Contents. Chapter 1: Creating Structured Documents 1

COPYRIGHTED MATERIAL. Contents. Chapter 1: Creating Structured Documents 1 59313ftoc.qxd:WroxPro 3/22/08 2:31 PM Page xi Introduction xxiii Chapter 1: Creating Structured Documents 1 A Web of Structured Documents 1 Introducing XHTML 2 Core Elements and Attributes 9 The

More information

LECTURE-3. Exceptions JS Events. CS3101: Programming Languages: Javascript Ramana Isukapalli

LECTURE-3. Exceptions JS Events. CS3101: Programming Languages: Javascript Ramana Isukapalli LECTURE-3 Exceptions JS Events 1 EXCEPTIONS Syntax and usage Similar to Java/C++ exception handling try { // your code here catch (excptn) { // handle error // optional throw 2 EXCEPTIONS EXAMPLE

More information

P3e REPORT WRITER CREATING A BLANK REPORT

P3e REPORT WRITER CREATING A BLANK REPORT P3e REPORT WRITER CREATING A BLANK REPORT 1. On the Reports window, select a report, then click Copy. 2. Click Paste. 3. Click Modify. 4. Click the New Report icon. The report will look like the following

More information

Internet Explorer HTML 4.01 Standards Support Document

Internet Explorer HTML 4.01 Standards Support Document [MS-HTML401]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

Documentation > Product Info > Site Manager > 7.3 & 7.4 > Content > Add Content

Documentation > Product Info > Site Manager > 7.3 & 7.4 > Content > Add Content Add Content Site Manager Community Extranet - TERMIN... Documentation > Product Info > Site Manager > 7.3 & 7.4 > Content > Add Content Add Content Site Manager Version: 7.3: +. Minimum User Level: Contributor

More information

Introduction to using HTML to design webpages

Introduction to using HTML to design webpages Introduction to using HTML to design webpages #HTML is the script that web pages are written in. It describes the content and structure of a web page so that a browser is able to interpret and render the

More information

This guide will cover:

This guide will cover: This guide will cover: Adding the essential code to the VisualForce page Setting up the address fields Adding the fields to the AddressTools setup Creating an AddressTools trigger for the VisualForce page

More information

Web Design and Application Development

Web Design and Application Development Yarmouk University Providing Fundamental ICT Skills for Syrian Refugees (PFISR) Web Design and Application Development Dr. Abdel-Karim Al-Tamimi altamimi@yu.edu.jo Lecture 02 A. Al-Tamimi 1 Lecture Overview

More information

TEXTAREA NN 2 IE 3 DOM 1

TEXTAREA NN 2 IE 3 DOM 1 778 TEXTAREA Chapter 9DOM Reference TEXTAREA NN 2 IE 3 DOM 1 The TEXTAREA object reflects the TEXTAREA element and is used as a form control. This object is the primary way of getting a user to enter multiple

More information

Forms iq Designer Training

Forms iq Designer Training Forms iq Designer Training Copyright 2008 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, stored in a retrieval system, or translated into

More information

JAVASCRIPT BASICS. Handling Events In JavaScript. In programing, event-driven programming could be a programming

JAVASCRIPT BASICS. Handling Events In JavaScript. In programing, event-driven programming could be a programming Handling s In JavaScript In programing, event-driven programming could be a programming paradigm during which the flow of the program is set by events like user actions (mouse clicks, key presses), sensor

More information

Automated Article Links Identification for Web-based Online Medical Journals

Automated Article Links Identification for Web-based Online Medical Journals Automated Article Links Identification for Web-based Online Medical Journals Daniel X. Le and George R. Thoma Lister Hill National Center for Biomedical Communications National Library of Medicine Bethesda,

More information

Appendix A. XHTML 1.1 Module Reference

Appendix A. XHTML 1.1 Module Reference Appendix A XHTML 1.1 Module Reference 2 How to Do Everything with HTML & XHTML XHTML 1.1 represents a major step by the W3C in moving away from the often-disorderly world of HTML to the organized and orderly

More information

Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the world

Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the world Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the world Visit us on the World Wide Web at: www.pearsoned.co.uk Pearson Education Limited 2014

More information

Dreamweaver CS5 Lab 4: Sprys

Dreamweaver CS5 Lab 4: Sprys Dreamweaver CS5 Lab 4: Sprys 1. Create a new html web page. a. Select file->new, and then Blank Page: HTML: 2 column liquid, left sidebar, header and footer b. DocType: XHTML 1.0 Strict c. Layout CSS:

More information

This course is designed for web developers that want to learn HTML5, CSS3, JavaScript and jquery.

This course is designed for web developers that want to learn HTML5, CSS3, JavaScript and jquery. HTML5/CSS3/JavaScript Programming Course Summary Description This class is designed for students that have experience with basic HTML concepts that wish to learn about HTML Version 5, Cascading Style Sheets

More information

These tables are from the book Core JavaServer Faces by David Geary and Cay Horstmann, Sun Microsystems Press 2004.

These tables are from the book Core JavaServer Faces by David Geary and Cay Horstmann, Sun Microsystems Press 2004. These tables are from the book Core JavaServer Faces by David Geary and Cay Horstmann, Sun Microsystems Press 2004. Table 4 1 JSF Core Tags Tag f:view f:subview f:facet f:attribute f:param f:actionlistener

More information

NAME: name a section of the page TARGET = "_blank" "_parent" "_self" "_top" window name which window the document should go in

NAME: name a section of the page TARGET = _blank _parent _self _top window name which window the document should go in Anchor HREF: URL you are linking to Bold Base Address NAME: name a section of the page TARGET = "_blank" "_parent" "_self"

More information

Using Inspiration 7 I. How Inspiration Looks SYMBOL PALETTE

Using Inspiration 7 I. How Inspiration Looks SYMBOL PALETTE Using Inspiration 7 Inspiration is a graphic organizer application for grades 6 through adult providing visual thinking tools used to brainstorm, plan, organize, outline, diagram, and write. I. How Inspiration

More information

IMY 110 Theme 7 HTML Tables

IMY 110 Theme 7 HTML Tables IMY 110 Theme 7 HTML Tables 1. HTML Tables 1.1. Tables The HTML table model allows authors to arrange data into rows and columns of cells, just as in word processing software such as Microsoft Word. It

More information

The Scope of This Book... xxii A Quick Note About Browsers and Platforms... xxii The Appendices and Further Resources...xxiii

The Scope of This Book... xxii A Quick Note About Browsers and Platforms... xxii The Appendices and Further Resources...xxiii CONTENTS IN DETAIL FOREWORD by Joost de Valk PREFACE xvii xix INTRODUCTION xxi The Scope of This Book... xxii A Quick Note About Browsers and Platforms... xxii The Appendices and Further Resources...xxiii

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

Skyway Builder Web Control Guide

Skyway Builder Web Control Guide Skyway Builder Web Control Guide 6.3.0.0-07/21/2009 Skyway Software Skyway Builder Web Control Guide: 6.3.0.0-07/21/2009 Skyway Software Published Copyright 2009 Skyway Software Abstract TBD Table of

More information

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 1/6/2019 12:28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 CATALOG INFORMATION Dept and Nbr: CS 50A Title: WEB DEVELOPMENT 1 Full Title: Web Development 1 Last Reviewed:

More information

Introduction to DHTML

Introduction to DHTML Introduction to DHTML HTML is based on thinking of a web page like a printed page: a document that is rendered once and that is static once rendered. The idea behind Dynamic HTML (DHTML), however, is to

More information

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space.

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space. HTML Summary Structure All of the following are containers. Structure Contains the entire web page. Contains information

More information

HTML User Interface Controls. Interactive HTML user interfaces. Document Object Model (DOM)

HTML User Interface Controls. Interactive HTML user interfaces. Document Object Model (DOM) Page 1 HTML User Interface Controls CSE 190 M (Web Programming), Spring 2007 University of Washington Reading: Sebesta Ch. 5 sections 5.1-5.7.2, Ch. 2 sections 2.9-2.9.4 Interactive HTML user interfaces

More information

!Accessibility Issues Found

!Accessibility Issues Found WCG2- accessibility report for http://www.messiah.edu 207-07-28!ccessibility Issues Found (6,838,98 unique issues affecting 7,45 pages) Overall accessibility compliance Done 53 issues done issues to fix/review

More information

Events: another simple example

Events: another simple example Internet t Software Technologies Dynamic HTML part two IMCNE A.A. 2008/09 Gabriele Cecchetti Events: another simple example Every element on a web page has certain events which can trigger JavaScript functions.

More information

link document.getelementbyid("coffee").style.borderwidth = "0px" document.getelementbyid("tea").style.borderwidth = "10px"

link document.getelementbyid(coffee).style.borderwidth = 0px document.getelementbyid(tea).style.borderwidth = 10px function coffeeinfo() document.getelementbyid('p3').innerhtml = "the word 'coffee' was at one time a term for wine, but was. " document.getelementbyid('p3').style.color

More information

COMSC-031 Web Site Development- Part 2

COMSC-031 Web Site Development- Part 2 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal December 5, 2013 Chapter 13 13 Designing a Web Site with CSS In addition to creating styles for text, you can use CSS to create

More information

CREATING & UPLOADING MULTIPLE PRODUCTS

CREATING & UPLOADING MULTIPLE PRODUCTS CREATING & UPLOADING MULTIPLE PRODUCTS Introduction This guide will lead you step by step to create multiple products using a single batch upload in Seller Center. Before you begin, make sure you have

More information

710 Index Attributes, 127 action attribute, 263 assigning, bottom attribute, domain name attribute, 481 expiration date attribute, 480 8

710 Index Attributes, 127 action attribute, 263 assigning, bottom attribute, domain name attribute, 481 expiration date attribute, 480 8 INDEX Symbols = (assignment operator), 56 \ (backslash), 33 \b (backspace), 33 \" (double quotation mark), 32 \e (escape), 33 \f (form feed), 33

More information

CSS THE M\SS1NG MANUAL. David Sawyer McFarland. POGUE PRESS" O'REILLr Beijing Cambridge Farnham Köln Paris Sebastopol Taipei Tokyo

CSS THE M\SS1NG MANUAL. David Sawyer McFarland. POGUE PRESS O'REILLr Beijing Cambridge Farnham Köln Paris Sebastopol Taipei Tokyo CSS THE M\SS1NG MANUAL David Sawyer McFarland POGUE PRESS" O'REILLr Beijing Cambridge Farnham Köln Paris Sebastopol Taipei Tokyo Table of Contents The Missing Credits Introduction xiii I Part One: CSS

More information

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148 Index Numbers & Symbols (angle brackets), in HTML, 47 : (colon), in CSS, 96 {} (curly brackets), in CSS, 75, 96. (dot), in CSS, 89, 102 # (hash mark), in CSS, 87 88, 99 % (percent) font size, in CSS,

More information

Experience the Magic of On-the-fly Modernization. Screen Customization Guide. for Genie Version 3.0

Experience the Magic of On-the-fly Modernization. Screen Customization Guide. for Genie Version 3.0 Experience the Magic of On-the-fly Modernization Screen Customization Guide for Genie Version 3.0 2007 Profound Logic Software Second Edition: December 2007 Introduction... 4 Customizing Genie... 4 Working

More information

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21 Table of Contents Chapter 1 Getting Started with HTML 5 1 Introduction to HTML 5... 2 New API... 2 New Structure... 3 New Markup Elements and Attributes... 3 New Form Elements and Attributes... 4 Geolocation...

More information

HTML 5 Tables and Forms

HTML 5 Tables and Forms Tables for Tabular Data Display HTML 5 Tables and Forms Tables can be used to represet information in a two-dimensional format. Typical table applications include calendars, displaying product catelog,

More information

Visualforce & Lightning Experience

Visualforce & Lightning Experience Visualforce & Lightning Experience Learn how to use Visualforce to customize your Lightning Experience. UNIT I Using Visualforce in Lightning Experience Using Visualforce in Lightning Experience. Lightning

More information

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX KillTest Q&A Exam : 9A0-803 Title : Certified Dreamweaver 8 Developer Exam Version : DEMO 1 / 7 1. What area, in the Insert bar, is intended for customizing and organizing frequently used objects? A. Layout

More information

Want to add cool effects like rollovers and pop-up windows?

Want to add cool effects like rollovers and pop-up windows? Chapter 10 Adding Interactivity with Behaviors In This Chapter Adding behaviors to your Web page Creating image rollovers Using the Swap Image behavior Launching a new browser window Editing your behaviors

More information

Website Development with HTML5, CSS and Bootstrap

Website Development with HTML5, CSS and Bootstrap Contact Us 978.250.4983 Website Development with HTML5, CSS and Bootstrap Duration: 28 hours Prerequisites: Basic personal computer skills and basic Internet knowledge. Course Description: This hands on

More information

HTML WORKSHEET Explain HTML HEAD Tag Title Tag BASEFONT Tag

HTML WORKSHEET Explain HTML HEAD Tag Title Tag BASEFONT Tag vinsri76@yahoo.com HTML WORKSHEET Explain HTML HEAD Tag Title Tag BASEFONT Tag 1. 2. Text Editor 1. 2. Graphic Editor Name & Explain Attribute of Body Tags 1. 2. 1. 2. 3. 4. Name & Explain Attribute of

More information

IEEE Wordpress Theme Documentation

IEEE Wordpress Theme Documentation IEEE Wordpress Theme Documentation Version 1.0.2 2014-05- 16 Table of Contents TABLE OF CONTENTS 2 INITIAL SETUP 3 FRONT PAGE 3 POSTS PAGE 4 CONTACT 5 SITE MAP 6 MENU 7 HOME PAGE 8 PAGE TEMPLATES 10 LEFT

More information

LECTURE-2. Functions review HTML Forms. Arrays Exceptions Events. CS3101: Scripting Languages: Javascript Ramana Isukapalli

LECTURE-2. Functions review HTML Forms. Arrays Exceptions Events. CS3101: Scripting Languages: Javascript Ramana Isukapalli LECTURE-2 Functions review HTML Forms Arrays Exceptions Events 1 JAVASCRIPT FUNCTIONS, REVIEW Syntax function (params) { // code Note: Parameters do NOT have variable type. 1. Recall: Function

More information

Web Designing Course

Web Designing Course Web Designing Course Course Summary: HTML, CSS, JavaScript, jquery, Bootstrap, GIMP Tool Course Duration: Approx. 30 hrs. Pre-requisites: Familiarity with any of the coding languages like C/C++, Java etc.

More information

Center for Faculty Development and Support Making Documents Accessible

Center for Faculty Development and Support Making Documents Accessible Center for Faculty Development and Support Making Documents Accessible in Word 2007 Tutorial CONTENTS Create a New Document and Set Up a Document Map... 3 Apply Styles... 4 Modify Styles... 5 Use Table

More information

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application.

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application. Extra notes - Client-side Design and Development Dr Nick Hayward HTML - Basics A brief introduction to some of the basics of HTML. Contents Intro element add some metadata define a base address

More information

THIRD EDITION. CSS Cookbook. Christopher Schmitt foreword by Dan Cederholm O'REILLY 8. Beijing Cambridge Farnham Koln Sebastopol Taipei Tokyo

THIRD EDITION. CSS Cookbook. Christopher Schmitt foreword by Dan Cederholm O'REILLY 8. Beijing Cambridge Farnham Koln Sebastopol Taipei Tokyo THIRD EDITION CSS Cookbook Christopher Schmitt foreword by Dan Cederholm O'REILLY 8 Beijing Cambridge Farnham Koln Sebastopol Taipei Tokyo Table of Contents Foreword.\..,., xv Preface, xvii 1. Using HTML

More information

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support Web Services Service Delivery & Support UNIVERSITY OF TASMANIA UTAS CMS Easy Edit Suite Workshop V3 Web Service, Service Delivery & Support UWCMS Easy Edit Suite Workshop: v3 Contents What is Easy Edit

More information

Web Engineering CSS. By Assistant Prof Malik M Ali

Web Engineering CSS. By Assistant Prof Malik M Ali Web Engineering CSS By Assistant Prof Malik M Ali Overview of CSS CSS : Cascading Style Sheet a style is a formatting rule. That rule can be applied to an individual tag element, to all instances of a

More information

Table of Contents. MySource Matrix Content Types Manual

Table of Contents. MySource Matrix Content Types Manual Table of Contents Chapter 1 Introduction... 5 Chapter 2 WYSIWYG Editor... 6 Replace Text... 6 Select Snippet Keyword... 7 Insert Table and Table Properties... 8 Editing the Table...10 Editing a Cell...12

More information

Programmazione Web a.a. 2017/2018 HTML5

Programmazione Web a.a. 2017/2018 HTML5 Programmazione Web a.a. 2017/2018 HTML5 PhD Ing.Antonino Raucea antonino.raucea@dieei.unict.it 1 Introduzione HTML HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

Oliver Pott HTML XML. new reference. Markt+Technik Verlag

Oliver Pott HTML XML. new reference. Markt+Technik Verlag Oliver Pott HTML XML new reference Markt+Technik Verlag Inhaltsverzeichnis Übersicht 13 14 A 15 A 16 ABBR 23 ABBR 23 ACCEPT 26 ACCEPT-CHARSET

More information

Adding CSS to your HTML

Adding CSS to your HTML Adding CSS to your HTML Lecture 3 CGS 3066 Fall 2016 September 27, 2016 Making your document pretty CSS is used to add presentation to the HTML document. We have seen 3 ways of adding CSS. In this lecture,

More information

CSC Javascript

CSC Javascript CSC 4800 Javascript See book! Javascript Syntax How to embed javascript between from an external file In an event handler URL - bookmarklet

More information

ZNS-GIT IPAdmin Tool Operation Manual for H.264 Network Camera and Encoder. Table of Contents. 1. Introduction...3

ZNS-GIT IPAdmin Tool Operation Manual for H.264 Network Camera and Encoder. Table of Contents. 1. Introduction...3 Table of Contents 1. Introduction...3 1.1. Requirements... 3 1.2. Starting ZNS GIT IPAdmin Tool... 4 1.3. Menu and button configuration... 5 2. Scanning Devices...7 2.1. How to search your device... 7

More information

Content Elements. Contents. Row

Content Elements. Contents. Row Content Elements Created by Raitis S, last modified on Feb 09, 2016 This is a list of 40+ available content elements that can be placed on the working canvas or inside of the columns. Think of them as

More information

Overview 14 Table Definitions and Style Definitions 16 Output Objects and Output Destinations 18 ODS References and Resources 20

Overview 14 Table Definitions and Style Definitions 16 Output Objects and Output Destinations 18 ODS References and Resources 20 Contents Acknowledgments xiii About This Book xv Part 1 Introduction 1 Chapter 1 Why Use ODS? 3 Limitations of SAS Listing Output 4 Difficulties with Importing Standard Listing Output into a Word Processor

More information

Configuring Ad hoc Reporting. Version: 16.0

Configuring Ad hoc Reporting. Version: 16.0 Configuring Ad hoc Reporting Version: 16.0 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 2: Slides with Charts & Shapes... 12 Working with Charts

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Fundamentals of Website Development

Fundamentals of Website Development Fundamentals of Website Development CSC 2320, Fall 2015 The Department of Computer Science Events handler Element with attribute onclick. Onclick with call function Function defined in your script or library.

More information

HTTP and HTML. We will use HTML as a frontend to our webapplications, therefore a basic knowledge of HTML is required, especially in forms.

HTTP and HTML. We will use HTML as a frontend to our webapplications, therefore a basic knowledge of HTML is required, especially in forms. HTTP and HTML We will use HTML as a frontend to our webapplications, therefore a basic knowledge of HTML is required, especially in forms. HTTP and HTML 28 January 2008 1 When the browser and the server

More information

Dreamweaver Basics Workshop

Dreamweaver Basics Workshop Dreamweaver Basics Workshop Robert Rector idesign Lab - Fall 2013 What is Dreamweaver? o Dreamweaver is a web development tool o Dreamweaver is an HTML and CSS editor o Dreamweaver features a WYSIWIG (What

More information

Office 2016 Excel Basics 01 Video/Class Project #13 Excel Basics 1: Excel Grid, Formatting, Formulas, Cell References, Page Setup (O16-13)

Office 2016 Excel Basics 01 Video/Class Project #13 Excel Basics 1: Excel Grid, Formatting, Formulas, Cell References, Page Setup (O16-13) Office 2016 Excel Basics 01 Video/Class Project #13 Excel Basics 1: Excel Grid, Formatting, Formulas, Cell References, Page Setup (O16-13) Topics Covered in Video: 1) Excel file = Workbook, not Document

More information

Website Creating Content

Website Creating Content CREATING WEBSITE CONTENT As an administrator, you will need to know how to create content pages within your website. This document will help you learn how to: Create Custom Pages Edit Content Areas Creating

More information

Tree and Data Grid for Micro Charts User Guide

Tree and Data Grid for Micro Charts User Guide COMPONENTS FOR XCELSIUS Tree and Data Grid for Micro Charts User Guide Version 1.1 Inovista Copyright 2009 All Rights Reserved Page 1 TABLE OF CONTENTS Components for Xcelsius... 1 Introduction... 4 Data

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

5-Sep-16 Copyright 2016 by GemTalk Systems LLC 1

5-Sep-16 Copyright 2016 by GemTalk Systems LLC 1 So far we have identified the specific Seaside messages to create particular HTML constructs in an adhoc manner as needed for particular features. Now we will attempt a more systematic approach by looking

More information

Meijer.com Style Guide

Meijer.com Style Guide TABLE OF CONTENTS Meijer.com Style Guide John Green Information Architect November 14, 2011 1. LAYOUT... 2 1.1 PAGE LAYOUT... 2 1.1.1 Header... 2 1.1.2 Body / Content Area... 3 1.1.2.1 Top-Level Category

More information

INFS 2150 / 7150 Intro to Web Development / HTML Programming

INFS 2150 / 7150 Intro to Web Development / HTML Programming XP Objectives INFS 2150 / 7150 Intro to Web Development / HTML Programming Designing a Web Page with Tables Create a text table Create a table using the , , and tags Create table headers

More information

RingCentral Call Center for Salesforce. Administrator Guide

RingCentral Call Center for Salesforce. Administrator Guide RingCentral Call Center for Salesforce Administrator Guide 1 RingCentral Call Center for Salesforce Administrator Guide Introduction Contents Introduction... 3 About RingCentral Call Center for Salesforce..........................................

More information

New Perspectives on Creating Web Pages with HTML. Tutorial Objectives

New Perspectives on Creating Web Pages with HTML. Tutorial Objectives New Perspectives on Creating Web Pages with HTML Tutorial 9: Working with JavaScript Objects and Events 1 Tutorial Objectives Learn about form validation Study the object-based nature of the JavaScript

More information

GroveSite Custom Database Editor 3104 E. Camelback Road #559, Phoenix, AZ Phone: Fax:

GroveSite Custom Database Editor 3104 E. Camelback Road #559, Phoenix, AZ Phone: Fax: GroveSite Custom Database Editor Page 2 of 38 I. DATABASE USE OVERVIEW... 3 II. STEPS TO CREATE A NEW DATABASE TABLE... 3 III. ACCESS THE TABLE EDITOR... 4 IV. ADD A NEW TABLE... 5 V. SET TABLE OPTIONS...

More information

HTML What is HTML Hyper Text Markup Language is a computer based language used to create WebPages.

HTML What is HTML Hyper Text Markup Language is a computer based language used to create WebPages. vinsri76@yahoo.com +965-69300304 HTML What is HTML Hyper Text Markup Language is a computer based language used to create WebPages. Name Two text Editor which are used to create HTML page. They are: Notepad

More information

NAVIGATION INSTRUCTIONS

NAVIGATION INSTRUCTIONS CLASS :: 13 12.01 2014 NAVIGATION INSTRUCTIONS SIMPLE CSS MENU W/ HOVER EFFECTS :: The Nav Element :: Styling the Nav :: UL, LI, and Anchor Elements :: Styling the UL and LI Elements CSS DROP-DOWN MENU

More information

Quick Actions Implementation Guide

Quick Actions Implementation Guide Quick Actions Implementation Guide Salesforce, Winter 18 @salesforcedocs Last updated: November 22, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Getting Started with Eric Meyer's CSS Sculptor 1.0

Getting Started with Eric Meyer's CSS Sculptor 1.0 Getting Started with Eric Meyer's CSS Sculptor 1.0 Eric Meyer s CSS Sculptor is a flexible, powerful tool for generating highly customized Web standards based CSS layouts. With CSS Sculptor, you can quickly

More information

SmartView. User Guide - Analysis. Version 2.0

SmartView. User Guide - Analysis. Version 2.0 SmartView User Guide - Analysis Version 2.0 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Dashboard Layouts 2 Dashboard Mode 2 Story Mode 3 Dashboard Controls 4 Dashboards

More information