-
-
Notifications
You must be signed in to change notification settings - Fork 4
Modifier characters
Bind key modifiers are special characters that you can add to an element's bind key to add special behaviour.
An example of what this may look like is <button name="do" value="delete" data-bind:disabled="?!isActive">Delete</button>
, and <img src="/photo.jpg" data-bind:class=":size" />
.
Adding a colon to the bind key will have the effect of toggling a token, such as in the element's classList
.
It's very common in web user interfaces to want to add or remove a string token to the class
attribute. Using the DOM, this can be achieved by doing $element->classList->add("selected");
, for example.
With the following example HTML:
<img src="/cat.jpg" alt="My cat" data-bind:class=":imageCategory" />
This image element will add a token to the class
attribute according to the value of imageCategory
.
With the following PHP:
function example(DocumentBinder $binder):void {
$binder->bindKeyValue("imageCategory", "cat-photo");
}
The output HTML will look like this:
<img src="/cat.jpg" alt="My cat" class="cat-photo" />
PHP.Gt/DomTemplate is a separately maintained component of PHP.Gt/WebEngine.
- Bind data to HTML elements with
data-bind
attributes - Bind key modifiers
- Inject data into HTML with
{{curly braces}}
- Bind lists of data with
data-list
attributes - Bind nested lists with
data-bind:list
- Automatically remove unbound elements with
data-element
- Bind tabular data into HTML tables
- Using objects to represent bindable data