On 7/21/06, Vixiom <[EMAIL PROTECTED]> wrote: > > Hi, > > I have a 'Product' model that has the following list_display > > list_display = ('title','category','price_adjusted', 'on_sale', > 'featured', 'visible') > > 'price_adjusted' is the following method > > def price_adjusted(self): > if self.on_sale: > return self.sale_price > else: > return self.price > > which works fine and returns the sale price if 'on_sale' is true, > however you lose the ability to sort that column. Is there a way to > have a custom column with sorting? > The way I understand it, sorting is done at the database level. The db would have no knowldge of 'price_adjusted' so NO you can't sort by that or any other custom column.
Although, one could use some javascript to sort the table by any column on the client side. Or one could add another column to the db and fill it on save or something of the sort. -- ---- Waylan Limberg [EMAIL PROTECTED] --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---