Sorry for the trouble. ModelAdmin by default has an attribute named 'action_checkbox' in list_display to show the checkbox in each result row. On overridding we've excluded it. * You may change your code as list_display = ['action_checkbox'] + list(list_display). * Or better forget it by setting list_display with minimum items at first and then reset it as list_display = list_display + custom_items when required as before.
Rajeesh. > nope there is a problem after overriding it, i cannot see the check > boxes now. > -Rahul -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

