Right now I have two autocomplete textfields along with their search
controllers defined in my controllers.py;
release = widgets.AutoCompleteField(search_controller="/
search_release",
search_param = "suggest_release",
result_name = "release")
debug = widgets.AutoCompleteField(search_controller="/
search_debug",
search_param = "suggest_debug",
result_name = "debug")
return dict(release=release, debug=debug)
I call them from my kid file like:
${debug.display()}
${release.display()}
The problem is that if I have 2 of them, none of them work, however if
I only show one of the above in the kid file, the autocomplete works
fine. Can anyone tell me what might be wrong? I'm going through the
html codes and I can't find anything wrong with it.
Thierry
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---