Data-binding for a form
We usually have a form for input data entries. In ZKGrails 2, there are 3 methods, `.link()`, `.unlink()` and `.bind()`, related to this feature. For example, we have a `` containing several input boxes: Then we can call: $('#form').link(null, [id: "textbox", name: "combobox" ]) To prepare a binding. Later when we get an instance of object to bind, just call: $('#form').bind(obj) Your **obj.id** will be binding to the "textbox", and **obj.name** will be binding to the "combobox" in the `` form. To stop the data-binding or you may want to bind this form with different set of properties, call: $('#form').unlink()












