I have some problem with multiple create forms on the same page.
def index():
  form1 = crud.create(somedb)
  form2 = crud.create(somedb)
  return dict(form1=form1, form2=form2)

The problem here is that all the rows and the inputs gets the same html id
and thats not good for jQuery manipulation.

I can see a solution in adding a form_prefix=None variable to SQLFORM that
can fix all this.

/R

-- 
______________________________________________
Robert Marklund

Phone: +46 (0)46 19 36 82
Mobile: +46 (0)70 213 22 76
E-mail: robbelibob...@gmail.com
______________________________________________

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" group.
To post to this group, send email to web2py@googlegroups.com
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to