What is "form" here? (form.setValue(obj)) I have created a Inputexform
using your example code..
YAHOO.util.Event.addListener(window, "load", function(){
new inputEx.Form({
parentEl: 'inputExForm',
fields: [ .....(etc)
So, how do I access the form that gets created. Do I need to set var
myform=new inputEx.Form({ ... ?
Do you know how I would return the correct json from django? I am
returning json, but it is not binding to the inputEx fields. This is
what my json looks like, where "Username" and "City" should match the
name of my inputEx fields.
[{"pk": 1, "model": "ManageProducts.member", "fields": {"Username":
"robinne2", "City": "New York", ...(etc)}]
Thanks.