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
--To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/au7eeELCSVoJ.
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
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.