Difference between revisions of "Actionbar"

From Lianjapedia
Jump to: navigation, search
(Description)
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
Note: property, method and event names should be referred to in lowercase in case-sensitive scripting languages.
 +
 +
====Description====
 +
Shown below in a standalone [[Form]].  Click the image to see in a [[Custom_Sections_and_Gadgets|Custom Section]] in a Lianja [[Page Attributes|Page]].
 +
 +
[[{{ns:file}}:actionbar_toolbar.png|link={{filepath:actionbar_toolbar_cs.png}}|Actionbar, Toolbar]]
 +
 +
The Actionbar is a Toolbar container pre-loaded with action buttons.
 +
 
====Properties====
 
====Properties====
  
This class supports the '''Common properties''' plus the following:
+
This class supports the [[:Category:Common_Properties|Common Properties]] plus the following:
  
{| class="wikitable"
+
{| class="wikitable" width="100%"
 
!width="20%"|Property
 
!width="20%"|Property
 
!Access (R/RW)
 
!Access (R/RW)
Line 23: Line 32:
 
====Methods====
 
====Methods====
  
This class supports the '''Common methods''' plus the following:
+
This class supports the [[:Category:Common_Methods|Common Methods]] plus the following:
  
{| class="wikitable"
+
{| class="wikitable" width="100%"
 
!width="20%"|Method
 
!width="20%"|Method
 
!Args
 
!Args
 
!width="50%"|Description
 
!width="50%"|Description
 +
|-
 +
|valign="top"|AddAction
 +
|valign="top"|icon as Character, action as Character
 +
|valign="top"|Add an action, specifying the icon filename and the action text.  The action text is displayed when the mouse hovers over the icon and passed to the actionbar.click(action) event when the icon is clicked
 
|-
 
|-
 
|valign="top"|AddObject
 
|valign="top"|AddObject
|existing as Object | newobject as Character, class as Character
+
|valign="top"|existing as Object | newobject as Character, class as Character
|Add an existing object or a new object, in which case the object's class must also be specified
+
|valign="top"|Add an existing object or a new object, in which case the object's class must also be specified
|-
+
|RemoveObject
+
|existing as Object
+
|Remove the specified object
+
|-
+
|AddAction
+
|icon as Character, action as Character
+
|Add an action, specifying the icon filename and the action text.  The action text is displayed when the mouse hovers over the icon and passed to the actionbar.click(action) event when the icon is clicked
+
 
|-
 
|-
 
|AddSeparator
 
|AddSeparator
 
|None
 
|None
 
|Add a separator
 
|Add a separator
 +
|-
 +
|RemoveObject
 +
|existing as Object
 +
|Remove the specified object
 
|-
 
|-
 
|}
 
|}
Line 50: Line 59:
 
====Events====
 
====Events====
  
This class supports the '''Common events''' plus the following:
+
This class supports the [[:Category:Common_Events|Common Events]] plus the following:
  
{| class="wikitable"
+
{| class="wikitable" width="100%"
 
!width="20%"|Event
 
!width="20%"|Event
 
!Args
 
!Args
 
!width="50%"|Description
 
!width="50%"|Description
 
|-
 
|-
|click
+
|valign="top"|click
|action as Character
+
|valign="top"|action as Character
|Occurs when an action button in the actionbar is clicked
+
|valign="top"|Occurs when an action button in the actionbar is clicked
 
|-
 
|-
 
|}
 
|}

Latest revision as of 11:04, 9 April 2018

Note: property, method and event names should be referred to in lowercase in case-sensitive scripting languages.

Description

Shown below in a standalone Form. Click the image to see in a Custom Section in a Lianja Page.

Actionbar, Toolbar

The Actionbar is a Toolbar container pre-loaded with action buttons.

Properties

This class supports the Common Properties plus the following:

Property Access (R/RW) Value Description
Reccount RW Numeric Number of records
Recno RW Numeric Current record number

Methods

This class supports the Common Methods plus the following:

Method Args Description
AddAction icon as Character, action as Character Add an action, specifying the icon filename and the action text. The action text is displayed when the mouse hovers over the icon and passed to the actionbar.click(action) event when the icon is clicked
AddObject existing as Object | newobject as Character, class as Character Add an existing object or a new object, in which case the object's class must also be specified
AddSeparator None Add a separator
RemoveObject existing as Object Remove the specified object

Events

This class supports the Common Events plus the following:

Event Args Description
click action as Character Occurs when an action button in the actionbar is clicked