.mark( value )

Previous Next

Changes the mark value of one or more records.

Returns the 'this' object.

Syntax

.mark( value )

The required value is either a boolean or the string 'toggle' and has the following datatype and meaning:

Value

Datatype

Meaning

true

boolean

Marks all records in scope

false

boolean

Unmarks all records in scope

toggle

string

Toggles the mark value of all records in scope

 

Examples

$.udb('EMP').rows().mark(true);      // Mark all queried records

$.udb('EMP').rows(5).mark(false);    // Unmark the 6th record

 

See Also

.mark()