Element: <oj-bind-text>

Oracle® JavaScript Extension Toolkit (JET)
15.1.0

F83698-01

Since:
  • 4.1.0
Module:
  • ojknockout

QuickNav

Attributes


Text Binding

Use <oj-bind-text> to generate a text node with the resolved expression. Note that the <oj-bind-text> element will be removed from the DOM after binding is applied, and any child elements it has will be removed. For slotting, applications need to wrap the oj-bind-text element inside another HTML element (e.g. <span>) with the slot attribute. The oj-bind-text element does not support the slot attribute.

Note: Since the element sets its value using a text node, it is safe to set any string value without risking HTML or script injection.


Usage

Signature:

interface BindTextElement

Typescript Import Format
//To typecheck the element APIs, import as below.
import { BindTextElement } from "ojs/ojknockout";

//For the transpiled javascript to load the element's module, import as below
import "ojs/ojknockout";

For additional information visit:


Attributes

value :string

The value of the text node.