Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
What do you mean by "I can't get access to all the methods and properties of such created objects?"? – Aaron Digulla Apr 30 '12 at 12:47
Did you ever find a solution to your problem? – Jason More May 2 '12 at 15:50

1 Answer

Short Answer

In today's pragmatic javascript world, no.

Long Answer

I find approaches that include "everything and the kitchen sink" sound nice at the offset, but end up with lots of plumbing code, per your jsfiddle example. Knockout already provides lots of hooks into getting at things you need, and adding edge cases scenarios is a small amount of work.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.