Thx for greata tutorial, Ive already seen mygrid :) in my website I will use mainly grid, lots of them, so I was looking for a solution to create them automatically, like django do that in its admin page. if I keep doing them manually all grid titles and column names, its almost impossible, its not OOP either. and most importantly, it will be impossible to maintain it. Anyways, I will keep searching, if I bump into something, I will drop a line.
On Wednesday, 5 September 2012 19:38:12 UTC+3, MattDale wrote: > > I used this tutorial to get me going with the dhtmlx grid. > http://www.rkblog.rk.edu.pl/w/p/using-dhtmlxgrid-django-application/ > it's easy once you get the hang of it to make custom grids for each view, > but not as cut and dry as it seems you are looking for. > > On Wednesday, September 5, 2012 4:27:39 AM UTC-4, Sait Maraşlıoğlu wrote: >> >> This is an example how to create and modify admin listing page: This >> explains better >> >> class BookAdmin(admin.ModelAdmin): >> list_display = ('title', 'publisher', 'publication_date') >> list_filter = ('publication_date',) >> date_hierarchy = 'publication_date' >> ordering = ('-publication_date',) >> filter_horizontal = ('authors',) >> *raw_id_fields = ('publisher',) >> >> Lets say , I want to use this kind of command for my frond-end, django >> handle the search fields and listing parameters. >> only with my own table model, lets say its DHTMLX . at the end, I will have >> my view, generated with search options and >> a few buttons to search,view,edit... >> is it possible, not required to be ready to use, I just looking for a way to >> achieve it. >> >> thx again. >> * >> >> >> >> >> On Sunday, 2 September 2012 00:58:25 UTC+3, Sait Maraşlıoğlu wrote: >>> >>> Just seen a demo page >>> http://nextgensim.info/grids >>> so beautiful grids, >>> lift framework can do that, I guess, havent dig much but as far as I >>> seen, its an alternative framework. >>> Can anybody tell me how to create this kind of interactive tables? What >>> django has to offer, if not What keywords, I need to search? >>> thx >>> >> -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/8FG163jVqosJ. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.