0.5.0 • Published 2 years ago

alfa-databinding v0.5.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

alfa-databinding

A value can be bound to any HTML Element. When user enters a value into box, all other HTML Elements with the same bound_path will display the value.

<input bound_path="ds.arg01"> 
<span bound_path="ds.arg01">

A value selected from dropdown will be assigned to all HTML Elements matching bound_path_out

<input type="search" list="data-lst" bound_path_out="ds.selected">
<span bound_path="ds.selected">

how it works