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/-/VFARDxGVcw8J.
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.

Reply via email to