The tabber widget is designed to include the necessary CSS/JS files to enable tabbing behavior. If you want to embed a form widget inside of it I would suggest that you look at how TableForm handles its widgets and make your own subclass of Tabber that performs the behavior you want.
The reason that widgets are displayed empty in editForm.render() is because you have not added data to them. If you are looking for a quick hack you can do editForm.render(data, action=myaction) Where data is the 'data' you are using to fill in the form, and 'myaction' is the controller method the form should post data to. -Adam --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

