I am wondering about starting a project, which would create a set of knockout viewmodel objects, connected with binding handlers, that would work in a similar fashion as for example the C# server controls. What I mean by that, in my namespace, I would have an array called controls, where I could do for example "my.controls.button1" and get access to all the properties, and functions of the button1 which is defined in the view.
I know that there are some projects, which does just that, like: https://github.com/SteveSanderson/knockout/wiki/Bindings or https://github.com/madcapnmckay/Knockout-UI
But either I don't know how to use it, or it doesn't strictly do what I have just described. I can't get access to all the methods and properties of such created objects?
Having such objects, we could use them in the same way as we did building the desktop applications. Setting one element on the new form, setting it's x and y position, defining all it's appearance, control each event of such an object.
Is something like this useful? Or would it be in some way wrong to build something like this? If so why?
The example of such library could be a set of controls created in sucha way: http://jsfiddle.net/nJgp2/32/
This is an example of a simple button control, which uses JQ UI button, and allows to create element, based on parameters passed in data-bind, and at the same time, allows to change every property of such object using the JS itself.
Does something like this makes sense to use?