Re: Displaying results in Template in a Table ? What is the proper way ?Any app?

2011-08-16 Thread Mike Seidle
On Wednesday, August 10, 2011 07:03:51 pm Brian Bouterse wrote: > I know it's not Django specific, but when I need a table for my Django > projects, I use jQuery Datatable . It rocks! I highly recommend Datatable... It's not to hard to do either. -- You received

Re: Displaying results in Template in a Table ? What is the proper way ?Any app?

2011-08-11 Thread Andre Terra
I'm personally considering serializing my objects and using ExtJS for powerful data grids. Their subtotal grouping mode looks just like what I want. Check out their example page and read through the .js file to see and example of the serialized data. Cheers, AT On 8/10/11, Adam Zedan

Re: Displaying results in Template in a Table ? What is the proper way ?Any app?

2011-08-10 Thread David
I'm a fan of django_tables2. You have to write the CSS yourself if you want anything special, but I'm ok with that. It does a good job of handling server side pagination and sorting as well as custom column renderers. It also ties in pretty well with Django models if you need that kind of thing.

Re: Displaying results in Template in a Table ? What is the proper way ?Any app?

2011-08-10 Thread Brian Bouterse
I know it's not Django specific, but when I need a table for my Django projects, I use jQuery Datatable . It rocks! Brian On Wed, Aug 10, 2011 at 5:26 PM, Adam Zedan wrote: > Or in other words a good datagrid to use with Djano...What do u >

Re: Displaying results in Template in a Table ? What is the proper way ?Any app?

2011-08-10 Thread Adam Zedan
Or in other words a good datagrid to use with Djano...What do u people suggest or use?? On Aug 11, 1:52 am, Adam Zedan wrote: > Hi i wanted to know what do most people here do when they need to show > results in a template which just needs to be displayed in Table. > For

Displaying results in Template in a Table ? What is the proper way ?Any app?

2011-08-10 Thread Adam Zedan
Hi i wanted to know what do most people here do when they need to show results in a template which just needs to be displayed in Table. For example displaying data from a db etc in a template. I did try an app called django_tables2 but it just seems really simple with respect to presentation. I