Table Of Contents

aps/ActiveItem

Composite collapsible list item.

Used as a child in an ``ActiveList`` and contains other widgets.

Compatibility

CP only

This widget can be used only as a child of an aps/ActiveList container.

Overview

aps/ActiveItem is a complex widget consisting of a header with its own complex structure and an embedded part that may be collapsed (hidden).

../../../../../_images/activeItem.png

Header Properties

The widget header is defined by the following properties:

  • iconName - path to the icon file.

  • title - title on top of the widget.

  • description - plain text, HTML, widget, DOM Node, or array to display information located below the title (can be dynamic) about the resource presented by the widget.

  • info - plain text, HTML, widget, DOM Node, or array to display additional information (can be dynamic) about the resource presented by the widget.

  • collapsible - define if it is allowed to collapse the internal part of the widget or not.

  • collapsed - define if the internal part is collapsed at the moment.

Child Widgets in Header

The header can contain the following child widgets:

  • aps/ToolbarButton - a direct child of the ActiveItem widget and, once defined, it is added to the toolbar automatically.

  • aps/Switch - used inside another widget or assigned to a property, for example, assigned as a value to the Info property. It allows switching the ActiveItem status to on or off.

  • aps/InfoBoard - a direct child of the ActiveItem and, once defined, it will be automatically placed into the location of the information board.

Embedded Part

In its embedded part, the aps/ActiveItem widget may contain arbitrary widgets which can have their own child widgets. More detailed information on widget declaration see in Declarations. We recommend that you to use as child elements only widgets of the container category, that is aps/Container, aps/FieldSet, and so on. Widgets of other categories should be packaged in containers.

The embedded part may be hidden. To prohibit hiding and make the embedded part always visible, you need to assign false to the collapsible property.

Example

RUN DEMO

require([
  "aps/load",
  "aps/ready!"
], function(load, Output, Switch){
    "use strict";
    load(["aps/ActiveList",
        [
            ["aps/ActiveItem", {
                title:       "Title",
                description: "Description"
            }]
        ]
    ]);
});

Public Properties

PROPERTY

TYPE

DEFAULT

DESCRIPTION

collapsed

boolean

true

If this property value is set to “false”, the inner part of the widget is visible.

collapsible

boolean

true

Defines if it is allowed to wrap the contents.

description

string

“”

Information located below the title (can be dynamic) about the resource presented by the widget.

disabled

boolean

false

Specifies if the widget will respond to user input.

gridSize

string

undefined

This specifies the widget width that is relevant only for widgets inside Container, FieldSet, or Tiles.

iconName

string

“”

Path to the icon file.

info

string

“”

Additional information (can be dynamic) about the resource presented by the widget.

isBusy

boolean

false

If the widget is busy then this property is true.

label

string

“”

Text that is shown as a label if the widget is placed inside a aps/FieldSet.

title

string

“”

Title on top of the widget.

visible

boolean

true

If this property value is set to true, then the widget is visible.

collapsed boolean

If this property value is set to “false”, the inner part of the widget is visible. Default value: true.

collapsible boolean

Defines if it is allowed to wrap the contents. Default value: true.

description string

Information located below the title (can be dynamic) about the resource presented by the widget. Can be plain text, HTML, widget, DOM Node, or array. Default value: “”.

disabled boolean

Specifies if the widget will respond to user input.

Default value: false.

gridSize string

This specifies the widget width that is relevant only for widgets inside Container, FieldSet, or Tiles. In other cases it will be ignored.

gridSize string contains few options with number values (from 1 to 12) separated by spaces, which specify the grid size of the widget in different layouts:

- md - desktop

- xs - phone

For example, gridSize: “md-4 xs-2”.

All values below 1, e.g. “md-0”, will be replaced with the empty string (“”), values above 12, e.g. “md-14”, will be reduced to 12 (“md-12”).

Default value: undefined.

iconName string

Path to the icon file. Default value: “”.

info string

Additional information (can be dynamic) about the resource presented by the widget. Can be plain text, HTML, widget, DOM Node or array. Default value: “”.

isBusy boolean

If the widget is busy then this property is true.

Default value: false.

label string

Text that is shown as a label if the widget is placed inside a aps/FieldSet.

Default value: “”.

title string

Title on top of the widget. Default value: “”.

visible boolean

If this property value is set to true, then the widget is visible.

Default value: true.

Public Methods

METHOD

RETURN

DESCRIPTION

addChild (child, insertIndex)

undefined

Makes the given widget a child of this widget

cancel ()

object

Sets the isBusy property to false

destroy ()

undefined

Destroys this widget

focus ()

aps/_containerbase
function

Focusing the focusable child

get ()

any

Get a property of the Stateful instance

getChildren ()

array

Returns list of own children plus ToolbarButtons

getParents ()

array

Discover and return all parents of the widget

placeAt ()

dijit/_widgetbase
function

Place this widget somewhere in the DOM based on standard dojo/dom-construct::place() conventions

removeAll ()

undefined

Remove all children in the widget

removeChild (widget)

undefined

Removes the passed widget instance from this widget and destroys it

reset ()

undefined

Resets the widget

set ()

object
function

Set a property of the Stateful instance

startup ()

undefined

Processing after the DOM fragment is added to the document

validate ()

boolean

Called by oninit, onblur, and onkeypress

addChild

Makes the given widget a child of this widget. Inserts specified child widget’s dom node as a child of this widget’s container node, and possibly does other processing (such as layout).

Return: undefined

ARGUMENT

TYPE

DESCRIPTION

child

Widget

Child widget

insertIndex

Number
String

Position child in the parent node

cancel

Sets the isBusy property to false.

Return: object

destroy

Destroys this widget. Will also destroy any resources (including widgets) registered via this.own(). This method will also destroy internal widgets such as those created from a template.

Return: undefined

focus

Focusing the focusable child

Return: aps/_containerbase function

get

Get a property of the Stateful instance. Get a named property of the Stateful object. The property may potentially be retrieved via a getter method in subclasses.

In the base class, this just retrieves the object’s property.

Return: any

getChildren

Returns list of own children plus ToolbarButtons

Return: array

getParents

Discover and return all parents of the widget.

Return: array

placeAt

Place this widget somewhere in the DOM based on standard dojo/dom-construct::place() conventions. A convenience function providing a simple shorthand mechanism to put an existing (or newly created) widget somewhere in the DOM, and allow chaining.

Return: dijit/_widgetbase function

removeAll

Remove all children in the widget.

Return: undefined

removeChild

Removes the passed widget instance from this widget and destroys it. You can also pass in an integer indicating the index within the container to remove (ie, removeChild(5) removes the sixth widget).

Return: undefined

ARGUMENT

TYPE

DESCRIPTION

widget

Widget
Int

Child widget or index

reset

Resets the widget.

Return: undefined

set

Set a property of the Stateful instance. Sets named properties of the stateful object and notifies the watchers of the property. A programmatic setter may be defined in subclasses.

Return: object function

startup

Processing after the DOM fragment is added to the document. Called after a widget and its children have been created and added to the page and all related widgets have finished their creation cycle, that is after the postCreate() function is successfully completed for each of the related widgets. Note that startup() may be called while the widget is still hidden.

Return: undefined

validate

Called by oninit, onblur, and onkeypress. Show missing or invalid messages if appropriate, and highlight textbox field.

Return: boolean

Public Events

EVENT

RETURN

DESCRIPTION

onClick ()

undefined

The method is called when a user clicks on the widget

onClick

The method is called when a user clicks on the widget.