How have you made rows hidden?? if you talking about admin, You can control by overriding querset method for that particular table admin.
Example: class sometableAdmin: def queryset(self, request): if(whatevercond): return super(<sometableAdmin>, self).queryset(request) else: return self.model._default_manager.filter(id=1) Regards, //Vikalp On Thu, May 5, 2011 at 5:45 AM, rahul jain <jainwolver...@gmail.com> wrote: > All, > > Hidden rows elements also visible on list filters ? > > ex: > > I have a list filter on one of the columns , > > list filter for that column displays all the distinct values, but the > problem is that few rows i have disabled. > But list filter still displays those rows as well. > > How to fix this ? > > Thanks. > > RJ > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > 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. > > -- You received this message because you are subscribed to the Google Groups "Django users" group. 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.