lst = db(db.news.id>0).select(orderby=~db.news.event_date) for row in
lst:     row.header="dude man data"


On Oct 25, 7:52 am, lucas <sjluk...@gmail.com> wrote:
> hello one and all,
>
> how do you add a field with a header by iteration to a row from a
> select?
>
> lst = db(db.news.id>0).select(orderby=~db.news.event_date)
> for row in lst:
>     row.insert(0, "dude man data", "header")  # i know it isn't right
>
> just to give an idea of what i am trying to do.  suggestions?  thank
> you in advance.  lucas

Reply via email to