Re: ASP.Net GridView Equivalent in Django

2008-06-05 Thread Chris Scott
On Jun 5, 2008, at 9:34 AM, Chatchai Neanudorn wrote: > themplatetag + django session (or caching), you can maintain state of > variable. > > I have a change to look at ASP.NET. For my understanding, it > automatically > generate > Javascript for developer, good if dont want to deal with javas

Re: ASP.Net GridView Equivalent in Django

2008-06-05 Thread Chatchai Neanudorn
themplatetag + django session (or caching), you can maintain state of variable. I have a change to look at ASP.NET. For my understanding, it automatically generate Javascript for developer, good if dont want to deal with javascript, for me it is bad idea. ViewState, it keep state data in memory (

Re: ASP.Net GridView Equivalent in Django

2008-06-05 Thread Brian Victor
Ian wrote: > I have started looking at Django and was wondering if there is a > widget equivalent to ASP.Net's GridView in terms of richness of > functionality. I haven't seen anything like this implemented in django, and presumably the reason for that is django lacks anything like ASP.NET's View

Re: ASP.Net GridView Equivalent in Django

2008-06-05 Thread Gregor Müllegger
You are searching an UI Widget, is that right? Django doesn't provide any builtin UI stuff, except the templatetages. But you could try some of the following JavaScript libraries which inculde UI stuff: http://jquery.com/ with http://ui.jquery.com/ http://dojotoolkit.org/ http://extjs.com/ (i th

Re: ASP.Net GridView Equivalent in Django

2008-06-05 Thread Christian Joergensen
Ian wrote: > I am .Net developer looking to switch over to Python. > > I have started looking at Django and was wondering if there is a > widget equivalent to ASP.Net's GridView in terms of richness of > functionality. What does ASP.Net's GridView do? Regards, -- Christian Joergensen http://w

ASP.Net GridView Equivalent in Django

2008-06-04 Thread Ian
I am .Net developer looking to switch over to Python. I have started looking at Django and was wondering if there is a widget equivalent to ASP.Net's GridView in terms of richness of functionality. If someone knows of any and has some examples of its use I would greatly appreciate it. --~--~