Hello,

i am building a table for registered users faced this issue.

Here is my db structure.

class country(db.model)
      name  =  db.stringProperty()
      currency = db.stringProperty()
      language = db.stringProperty()


class userData(db.model)
     name = db.stringProperty()
     mail   = db.stringProperty()
     country  =  db.referenceProperty(country)

in the form made each column sort able. And also have a filter for
countries.


userData.all().order('country.name')

is the kind of query which i am trying to place to get the results.


can any one suggest a way to make this order sort







-- 
Regards
Sandeep Koduri
Phone: +91- 99 666 02 456
Gtalk: sandeep.koduri | Skype: sandeep.koduri
P Please consider the environment before printing this email

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to