Page MenuHomeGitPull.it

class JX.Workflow
Javelin Documentation ()

This class is not documented.

Tasks

Builtin Events

  • invoke(type, more) โ€” Invoke a class event, notifying all listeners. You must declare the events your class invokes when you install it; see @{function:JX.install} for documentation. Any arguments you provide will be passed to listener callbacks.
  • static listen(type, callback) โ€” Static listen interface for listening to events produced by any instance of this class. See @{method:listen} for documentation.

Other Methods

Methods

invoke(type, more)
Inherited

JX.Base

Invoke a class event, notifying all listeners. You must declare the events your class invokes when you install it; see JX.install() for documentation. Any arguments you provide will be passed to listener callbacks.

Parameters
stringtypeEvent type, must be declared when class is installed.
...moreZero or more arguments.
Return
JX.EventEvent object which was dispatched.

static listen(type, callback)
Inherited

JX.Base

Listen for events emitted by this object instance. You can also use the static flavor of this method to listen to events emitted by any instance of this object.

See also listen() in JX.Stratcom.

JX.Base

Static listen interface for listening to events produced by any instance of this class. See listen() for documentation.

Parameters
stringtypeType of event to listen for.
functioncallbackFunction to call when this event occurs.
Return
objectA reference to the installed listener. You can later remove the listener by calling this object's remove() method.

construct(uri, data)

This method is not documented.
Parameters
uri
data

static newFromForm(form, data, keep_enabled)

This method is not documented.
Parameters
form
data
keep_enabled

static newFromLink(link)

This method is not documented.
Parameters
link

private _push()

This method is not documented.
JX.Workflow
This method is not documented.
Parameters
workflow

private _pop()

This method is not documented.
JX.Workflow
This method is not documented.

private static _onlink(event)

This method is not documented.
Parameters
event

private static _onbutton(event)

This method is not documented.
Parameters
event

private static _onsyntheticsubmit(e)

This method is not documented.
Parameters
e

private static _dosubmit(form, button)

This method is not documented.
Parameters
form
button

private static _getActiveWorkflow()

This method is not documented.

private static _onresizestart(e)

This method is not documented.
Parameters
e

private static _onmousemove(e)

This method is not documented.
Parameters
e

private static _onmouseup()

This method is not documented.
This method is not documented.
This method is not documented.
This method is not documented.

private _onload(r)

This method is not documented.
Parameters
r

private _destroy()

This method is not documented.
This method is not documented.

private _send()

This method is not documented.
This method is not documented.

setData(dictionary)

This method is not documented.
Parameters
dictionary

addData(key, value)

This method is not documented.
Parameters
key
value

setDataWithListOfPairs(list_of_pairs)

This method is not documented.
Parameters
list_of_pairs
Defined
lib/Workflow.js:18
Extends
JX.Base