When doing this the assignee, summary and dependencies columns are trunc [shortened]. How can I prevent this to happen?
This is the code:
db.buglist.insert(bug_id=bugid,dependencies=deps,sev=severity,
prio=priority, assignee=assigned_to, status=bug_status,
summary=short_desc)
grid =
SQLFORM.grid(db.buglist,searchable=False,paginate=0,details=False,deletable=False,create=False,editable=False,user_signature=False)
return locals()

