Namespace: KnockoutUtils

Oracle® JavaScript Extension Toolkit (JET)
15.1.0

F83698-01

Since:
  • 1.0
Module:
  • ojknockout-model

QuickNav

Description

Utility methods for blending Knockout observables with the data model


Usage

Typescript Import Format
//This namespace exports multiple static methods or members. To import 
import * as KnockoutUtils from "ojs/ojknockout-model";

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

For additional information visit:


Methods

(static) KnockoutUtils.map(m, callback, array) : {ko.Observable<any>|ko.ObservableArray<any>}

Turns the attributes in a model object (or the attributes of all models in a collection object) into Knockout observables for use with components' view models.
Parameters:
Name Type Argument Description
m Object The model or collection containing the attributes to be converted to Knockout observables.
callback function(Object) <optional>
Called once per model so that a caller can add their own Knockout computed observables to the model.
array boolean <optional>
Should function return an observable array if m is an oj.Collection, vs. an array of observables?
Returns:

array of Knockout observables or an observable array

Type
ko.Observable<any>|ko.ObservableArray<any>