Namespace: BindingProvider

Oracle® JavaScript Extension Toolkit (JET)
15.0.0

F75901-01

Since:
  • 6.1.0
Module:
  • ojbindingprovider

QuickNav

Description

Utility class with functions for interacting with the JET binding provider.


Usage

Typescript Import Format
//This namespace exports multiple static methods or members. To import 
import * as BindingProvider from "ojs/ojbindingprovider";

//Now you can access the methods as BindingProvider.methodName and so on

For additional information visit:


Utility class with functions for interacting with the JET binding provider.

Methods

(static) createBindingExpressionEvaluator(expressionText, binding) : {function(object):any}

Creates an expression evaluator.
Parameters:
Name Type Description
expressionText string The inner expression text not including any decorator characters that identifies the string as an expression.
binding Object context where the expression will be evaluated
Returns:

An evaluator function that will take binding (data) context as a parameter

Type
function(object):any