Skip to content

ParamLineToken (EN)

Bhsd edited this page Dec 13, 2025 · 3 revisions

Other Languages

Introduction

One-line parameter inside <dynamicpagelist> or <inputbox>. This class inherits all the properties and methods of the Token class which are not repeated here.

✅ Available in the Mini and Browser versions.

Properties

type

✅ Expand

type: 'param-line'

// type
var line = Parser.parse('<inputbox>type=create</inputbox>')
	.querySelector('param-line');
assert.equal(line, 'type=create');
assert.strictEqual(line.type, 'param-line');

Methods

cloneNode

Expand

returns: this
Deep clone the node.

// cloneNode (main)
var line = Parser.parse('<inputbox>type=create</inputbox>')
	.querySelector('param-line');
assert.equal(line, 'type=create');
assert.deepStrictEqual(line.cloneNode(), line);

Clone this wiki locally