Re: hidden rows common elements also visible on list filters

2011-05-05 Thread vikalp sahni
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(, self).queryset(request)

hidden rows common elements also visible on list filters

2011-05-04 Thread rahul jain
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 ?