getBooleanValues (DOMDocument - JavaScript)

Gets the boolean values of the data elements that match an XPath.

Defined in

DOMDocument

Syntax

getBooleanValues(xpath:string) : any

getBooleanValues(xpath:string, selectionNS:NamespaceContext) : any

Parameters Description
xpath The XPath of elements associated with the document.
selectionNS A namespace context.
Return value Description
boolean The values of the data elements.

Usage

This method is equivalent to getBooleanValues in DOMElement.

In a schema, these data elements should be defined as boolean. In the data properties, the display type of a bound field should be String; the value is displayed as true or false.

If the XPath includes namespace prefixes, either:

Examples

(1) This example is for the onclick event of a button. It gets elements from the document specified by an index. The requestScope variables are bound to edit boxes on the page so the user specifies i before clicking the button, and gets back b or msg.
var dc = database.getAllDocuments();
if(dc.getDocumentCount() > 0) {
	if(requestScope.i >= 0 && requestScope.i < dc.getDocumentCount()) {
		var ar = dc.getDocumentArray(requestScope.i + 1);
		var doc = ar[i];
		var dom = doc.getDOM();
		var b = dom.getBooleanValues("//element1");
		requestScope.b = b.join(", ");
	} else {
		requestScope.msg = "No such document";
	}
} else {
	requestScope.msg = "No documents in database";
}
(2) This example is for the onclick event of a button. It gets elements from the document specified by an index using namespaces. The requestScope variables are bound to edit boxes on the page so the user specifies i before clicking the button, and gets back b or msg.
var dc = database.getAllDocuments();
if(dc.getDocumentCount() > 0) {
	if(requestScope.i >= 0 && requestScope.i < dc.getDocumentCount()) {
		var ar = dc.getDocumentArray(requestScope.i + 1);
		var doc = ar[i];
		var dom = doc.getDOM();
		var ns = new NamespaceContextImpl();
		ns.addNamespace("s", "http://mynamespace.com");
		var b = dom.getBooleanValues("//s:element1", ns);
		requestScope.b = b.join(", ");
	} else {
		requestScope.msg = "No such document";
	}
} else {
	requestScope.msg = "No documents in database";
}