The default choice field display of a reference property in appengine returns the choices as the string representation of the entire object. What is the best method to override this behaviour? I tried to override str() in the referenced class. But it does not work.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

The correct way would be to override the __unicode__ method of the class, like:

def __unicode__(self):
    return self.name

where name is the value that you want to display.

link|improve this answer
That is correct. I think my scenario was a bit different and I don't remember now. – Sriram Mar 17 '10 at 11:01
feedback

I got it to work by overriding the init method of the modelform to pick up the correct fields as I had to do filtering of the choices as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.