Re: Click and Drag Functionality in Web Apps with Python

2006-10-13 Thread Diez B. Roggisch
Fredrik Lundh schrieb: > Diez B. Roggisch wrote: > >> There is mochikit, a javascript library that makes coding in javascript >> suck less. > > and which is written by an experienced Python programmer, so it also > makes your JavaScript look and feel a little more Pythonic. > > (not that JavaScr

Re: Click and Drag Functionality in Web Apps with Python

2006-10-13 Thread Fredrik Lundh
Diez B. Roggisch wrote: > There is mochikit, a javascript library that makes coding in javascript > suck less. and which is written by an experienced Python programmer, so it also makes your JavaScript look and feel a little more Pythonic. (not that JavaScript itself is that unpythonic, really,

Re: Click and Drag Functionality in Web Apps with Python

2006-10-13 Thread Diez B. Roggisch
Wijaya Edward schrieb: > Hi, > > Some recent webapps like Kiko , Google's gadget > , and spreadsheets > to name a few, > have this functionality. > > I wonder how can this funcitonalities be i

Re: Click and Drag Functionality in Web Apps with Python

2006-10-12 Thread Bruno Desthuilliers
Wijaya Edward wrote: > Hi, > > Some recent webapps like Kiko , Google's gadget > , and spreadsheets > to name a few, > have this functionality. > > I wonder how can this funcitonalities be imp

Re: Click and Drag Functionality in Web Apps with Python

2006-10-12 Thread Bernard
I'd say they use javascript to make a click and drag function. Like this jquery interface example: http://interface.eyecon.ro/demos/drag.html So basically, you could use a python web framework like Turbogears(http://www.turbogears.org/) or Django(http://www.djangoproject.com/) with javascript to c

Re: Click and Drag Functionality in Web Apps with Python

2006-10-12 Thread Steve Holden
Wijaya Edward wrote: > Hi, > > Some recent webapps like Kiko , Google's gadget > , and spreadsheets > to name a few, > have this functionality. > > I wonder how can this funcitonalities be imp

Click and Drag Functionality in Web Apps with Python

2006-10-12 Thread Wijaya Edward
Hi, Some recent webapps like Kiko , Google's gadget , and spreadsheets to name a few, have this functionality. I wonder how can this funcitonalities be implemented in Python. Do you guys hav