Last time I checked, the time was: 8:45:41 AM
The library contains utilities to make composite Wrappers (i.e. Wrappers containing Wrappers) to cover common situations
Each component within this grid is itself a Wrapper, passed to the containing wrapper via the '.addMultiWrap' method.
You can also merge across rows arbitrarily (but not columns, sorry).
In this library there are Observables, Observers, and Wrappers (which functions as both Obserables and Observers)
This section contains 3 different Observers bound to 3 different Observables
- one with a primative value, illustrating the simplest case
- one with a simple object property, illustrating the use of changeKey ('boundProperty') to select a property to observe
- one with a nested property, illustrating the use of changeKey ('outer.inner') to identify the nested propety
0
{"boundProperty":0}
{"outer":{"inner":0}}
Wrappers function as Observables and Observers - thus they can be bound directly to one-another
Type above and watch me change
I'll set my style attribute to whatever you enter above (e.g. try 'font-family: courier; color: red')
I will be uppercase
(bound to target above)
(๐ bound to ๐)
(๐ bound to ๐)
The coup de grรขce: Combining all of the above, you can build inputs & forms dynamically based on objects. Includes Observers watching their values.
Labeled inputs, with Observers for free. Value types are inferred.
Each of these was made by calling "makeInputFor()" with a simple object passed in.
Example: formSection.makeInputFor({myString: "String value" })
The 3 inputs below were made with one line of code for the object:
{name: "Jim Panzee", status: "grumpy", age: 4}
{"name":"Jim Panzee","status":"grumpy","age":"4"}
The form below were made with one line of code for the object:
{"name":"Jim Panzee","status":"grumpy","age":4,"book":{"title":"Grumpy Monkey","author":"Suzanne Lang","owned":true,"released":"2018-05-15T00:00:00.000Z","inception":[{"array":"this"},{"of":"form"},{"objects":"got"},{"wasHard":"fancy"},{"fourthLevel":{"thisIs":["A","stress","test"]}}]}}