IsConflict (NotesXspViewEntry - JavaScript™)
Indicates whether a view entry is for a document on which a replication or save conflict occurred.
Defined in
NotesXspViewEntry (JavaScript)Syntax
isConflict() : boolean
Return value | Description |
---|---|
boolean |
true if the entry is a conflict document; false otherwise |
Examples
This value script for a Computed Field is embedded in a Data Table control with a Domino® view data source whose collection name isrowdata
. The script displays text if a view entry
is for a conflict document.try {
if (rowdata.isConflict()) {
return "CONFLICT DOCUMENT!"
}
} catch (e) {
return e.toString()
}