vrs762 wrote: > However, in my controller, I tried importing submodal by doing a few > combinations: > > import submodal > > from submodal import * > > from turbogears.widget import submodal > > > but when I do popupwidget = SubModal() it says SubModal not found. > > Any clue as to how I can get ths fixed? > The TurboGears widget browser says the location of submodal is: submodal.widgets.SubModal. Try the following:
from submodal.widgets import SubModal Tim --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

