Matt Grham
unread,Aug 3, 2013, 2:09:39 PM8/3/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web...@googlegroups.com
I have a table like:
3 records found
Man_ID Man_Type
8 BC
8 BC
8 BC
When I try to group by Man_ID, it does the grouping but it prints Unsupported Query on top of the table
Unsupported query
Man_ID Man_Type
8 BC
I used the following statement:
grid = SQLFORM.grid(query=query, fields=fields, headers=myheaders,
create=False, deletable=False, editable=False, details=False, csv=False,
maxtextlength=64,
paginate=25,
ui='jquery-ui',
user_signature=False,
searchable=searchable,
sortable=sortable,
groupby=db.mytable.Man_ID
)
Can you help me here?
Thanks,
Matt