Log in
Log in with USB
Inloggen met vingerafdruk wordt binnenkort mogelijk.
Last change: August 10, 2020
Current version: 1.1.1
The module codeMirror loads a Code Mirror editor on your website.
webanizr.collect('crumbPath', parameters, callback); webanizr.send('crumbPath', data, parameters, callback);
The collect function initializes a crumbpath. It does not display anything untill a send is performed.
The unique id for this crumbpath. Only use letters and / or numbers
The id of the DOM element in which to display the state of the crumbpath
The label to use as separator. If not set, the label " / " is used. The string can containt HTML.
The label to use for the back / close button. If not set, the label " x " is used. The string can contain HTML. If this option contains an empty string, the back button is not shown.
The class to apply to each step label. If this property is set, the labels of the steps will wrapped in a span with this class.
Contains the labels of all the steps. If these steps are not added yet, the corresponding label from this list will be shown.
The callback is called after the crumbpath is initialized. In this callback you can perform the first send.
The data contains the information about the step to add
The label to display in the crumbpath If not set the label "level ..." is used where ... is the number of the step in the cumbpath.
The callback function to perform when adding this step. The step is only added if this callback returns true
The callback function that is performed when this step is closed. It should contain the instructions to restore the previous step. If this function does not return true, the label is not removed but the close button is.
The DOM id of the recursive list to manipulate.
The dataname of the property that refers to the parent element.
The id of the parent element.
The send function adds or removes steps to the crumbpath.
The unique id for this crumbpath. This must be an id used in a previous collect.
Determines if the crumbpath will add or remove a step from the crumbpath. If not set, "add" is assumed.
The type of step to add (only applicable in combination with the type__action="add"). The options are:
The callback is called after the crumbpath is initialized. In this callback you can perform the first send.