endsWith( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Refines a query to match items whose specified property value ends with a specified string.

The endsWith() method refines this query to only match items where the value of the specified property ends with the specified string. Matching with endsWith() is not case sensitive, so "TEXT" ends with "ext".

You can only use endsWith() with a property whose value is a String or Reference. When using a Reference, endsWith() matches by the ID of the referenced item as Strings.

Method Declaration
Copy
Method Parameters
fieldstringRequired

Field whose value is compared with the string.


valuestringRequired

String to look for at the end of the specified property value.

Returns
Return Type:WixDataQuery
Did this help?