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.
The default choice field display of a reference property in appengine returns the choices
Share
The correct way would be to override the
__unicode__method of the class, like:where
nameis the value that you want to display.