[TurboGears] Re: Widgets For Beginers Request

2006-05-25 Thread Kevin Horn
Thanks, Michele! I guess I overlooked the second print render It's very late...That does seem to answer my question quite nicely, I just didn't manage to see it for some reason.but _also_: I was actually going to reply to this thread with news that I had (re)discovered _this_ thread from a

[TurboGears] Re: Widgets For Beginers Request

2006-05-25 Thread Michele Cella
Kevin Horn wrote: Thanks, Michele! I guess I overlooked the second print render It's very late... That does seem to answer my question quite nicely, I just didn't manage to see it for some reason. but _also_: I was actually going to reply to this thread with news that I had

[TurboGears] Re: Widgets For Beginers Request

2006-05-25 Thread Kevin Horn
well, with any luck I'll be finishing one of my work projects soon, so maybe I'll have some time (no promises thoughh :)Kevin H.On 5/25/06, Michele Cella [EMAIL PROTECTED] wrote: Kevin Horn wrote: Thanks, Michele! I guess I overlooked the second print renderIt's very late... That does seem to

[TurboGears] Re: Widgets For Beginers Request

2006-05-24 Thread gasolin
To let people figure out what we can get from turbogears widget before install tg, I think we may need a widget list (to list both core widget and plugins) http://trac.turbogears.org/turbogears/wiki/WidgetList -- Fred --~--~-~--~~~---~--~~ You received this

[TurboGears] Re: Widgets For Beginers Request

2006-05-24 Thread Arthur Clune
On 24 May 2006, at 11:50, gasolin wrote: http://trac.turbogears.org/turbogears/wiki/WidgetList Please! This is really useful for those of us learning TG. Arthur -- One secret of happiness is to ignore comparisons with people who are more successful than you are: always compare

[TurboGears] Re: Widgets For Beginers Request

2006-05-24 Thread Kevin Dangoor
On 5/24/06, gasolin [EMAIL PROTECTED] wrote: To let people figure out what we can get from turbogears widget before install tg, I think we may need a widget list (to list both core widget and plugins) http://trac.turbogears.org/turbogears/wiki/WidgetList It may be easier to just save a

[TurboGears] Re: Widgets For Beginers Request

2006-05-24 Thread Kevin Dangoor
On 5/24/06, gasolin [EMAIL PROTECTED] wrote: To let people figure out what we can get from turbogears widget before install tg, I think we may need a widget list (to list both core widget and plugins) http://trac.turbogears.org/turbogears/wiki/WidgetList BTW, my previous message is not to

[TurboGears] Re: Widgets For Beginers Request

2006-05-24 Thread gasolin
The reason why I don't just save a copy of the Widget Browser is the categorization. A clear set may help us a lot to figure out what kind of Widget we have and what kind of Widget we can make. Maybe a pretty core widget list with a uri link point to cogbin is nice for final documentation.

[TurboGears] Re: Widgets For Beginers Request

2006-05-24 Thread Kevin Horn
On a side note:I noticed that Jorge Godoy's SelectShuttle widget doesn't show up in CogBin...here's the url: http://cheeseshop.python.org/pypi/Select-Shuttle/0.93 ahhh...I think I may know why...the latest version is 0.94 and doesn't seem to have the right keywords (though 0.93 does). Maybe Jorge

[TurboGears] Re: Widgets For Beginers Request

2006-05-24 Thread Kevin Horn
The part of widgets documentation that I'd like to see fleshed out are more examples of the FormWidgets and other CompundWidgets.For example, is there a way to set the values of all the widgets contained in a CompundWidget at once? Maybe by passing a list? This would make forms for editing info in

[TurboGears] Re: Widgets For Beginers Request

2006-05-24 Thread Jorge Godoy
Em Quarta 24 Maio 2006 15:16, Kevin Horn escreveu: On a side note: I noticed that Jorge Godoy's SelectShuttle widget doesn't show up in CogBin... here's the url: http://cheeseshop.python.org/pypi/Select-Shuttle/0.93 ahhh...I think I may know why...the latest version is 0.94 and doesn't

[TurboGears] Re: Widgets For Beginers Request

2006-05-24 Thread Kevin Horn
Great news, Jorge!I've been eyeing it greedily...fortunately my procrastination has prevented me from digging into it yet, so at least I won't have to RE-learn anything. :)Kevin H. On 5/24/06, Jorge Godoy [EMAIL PROTECTED] wrote: Em Quarta 24 Maio 2006 15:16, Kevin Horn escreveu: On a side note: I

[TurboGears] Re: Widgets For Beginers Request

2006-05-24 Thread Randall Rauwendaal
I'm also in the process of learning how to use widgets with AJAX, and I really liked your example here. Although I would really like to put the getStuff function inside the widget code instead of the controller, do anyone know if this is possible, and if so, how? Kaan wrote: I recently went

[TurboGears] Re: Widgets For Beginers Request

2006-05-24 Thread Kaan
Given that the CalendarDatePicker widget comes with a bunch of AJAX calls of its own, I'd assume it's possible. Unfortunately, I have no idea how :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group.

[TurboGears] Re: Widgets For Beginers Request

2006-05-24 Thread Kaan
Actually, nevermind what I said in the above, all those requests in my terminal are for non-AJAX related stuff. I haven't checked out the RemoteForm widgets yet, do they do something like you said? --~--~-~--~~~---~--~~ You received this message because you are

[TurboGears] Re: Widgets For Beginers Request

2006-05-23 Thread Michael Schneider
Thank you , I will try the widget browser. mulicheng wrote: Have you checked out the widget browser when using tg-admin toolbox? Each widget has a source code tab that shows how that widget is being used. The code to pay attention to is the part in the widgetdesc class' self.for_widget=

[TurboGears] Re: Widgets For Beginers Request

2006-05-23 Thread Michael Schneider
Kaan, Thank you very much. I think I will try MochiKit first. I started with the 20 minute wiki, and havae been addding MochiKit functionality. My twisted history does help understand what is going on with defereds. I used to do some QT UI work a long time ago, so the SIGNAL framework is

[TurboGears] Re: Widgets For Beginers Request

2006-05-22 Thread mulicheng
Have you checked out the widget browser when using tg-admin toolbox? Each widget has a source code tab that shows how that widget is being used. The code to pay attention to is the part in the widgetdesc class' self.for_widget= section. That shows you how the Widget Description is instantiating