By default SQLTABLE does a truncate on the contents (you can set this
paramet to a higher value), and indeed the fully qulaified fieldnames
(that is for normal fields including the tablename) are shown on top.
To render it properly you have to render the table/form yourself in a view.

2009/7/1 Jason Brower <[email protected]>:
>
> I have a form like this...
>    form=FORM(SQLTABLE(rows),INPUT(_type='submit'))
>    if form.accepts(request.vars):
>         for i in request.vars:
>            if i.startswith("check"):
>               tagID = i.replace("check", "")
>               db.user_tags.insert(tag_id=tagID, user_id=auth.user.id)
>         response.flash = 'Tags Added'
> And it works...
> But it shows funny...
> it tends to cut the tags of and have the table lables on the tob...
> tag.name tag.id etc...
> How do I format it properly?
> Regards,
> Jason
>
> PS
> Example:
> tag.idtag.name
> 4
> Managerial Ac...
> 5
> Financial Acc...
> 6
> Auditing
> 7
> Economic Deve...
> 8
> International...
> 9
> World Trade O...
> 10
> Transitional ...
> 11
> Financial Ins...
> 12
> Corporate Fin...
> 13
> Risk Management
>
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to