[web2py] Re: Doubt with THEAD helper

2010-08-11 Thread Skiros
Ah ok ! I did not know that about thead. Thanks Massimo ! On 11 ago, 09:57, mdipierro wrote: > You have to be explicit. The rules would be too complex because you > can have multiple rows in the head and they can contain td instead of > th. Therefore web2py cannot understand what you mean. >

[web2py] Re: Doubt with THEAD helper

2010-08-11 Thread mdipierro
You have to be explicit. The rules would be too complex because you can have multiple rows in the head and they can contain td instead of th. Therefore web2py cannot understand what you mean. On Aug 10, 9:06 am, Skiros wrote: > Hmmm no. Its no ok. The response is repeating TR tag for each > eleme

[web2py] Re: Doubt with THEAD helper

2010-08-10 Thread Skiros
Hmmm no. Its no ok. The response is repeating TR tag for each element... and is using a TD tag too I believe this is the correct code >>> THEAD(TR(TH("a"), TH("b"))).xml() 'ab' On 9 ago, 19:03, mdipierro wrote: > It is a bug. Fixed in trunk: > > >>> THEAD('a','b').xml() > > 'ab' > > On Aug 9, 2

[web2py] Re: Doubt with THEAD helper

2010-08-09 Thread mdipierro
It is a bug. Fixed in trunk: >>> THEAD('a','b').xml() 'ab' On Aug 9, 2:52 pm, Skiros wrote: > Sorry > i expected "ab" > > On 9 ago, 16:19, Skiros wrote: > > > Hello ! > > > I have a doubt using THEAD helper. THEAD("a", "b") gives me as result > > "ab". > > I expected "ab". > > > Why is not the

[web2py] Re: Doubt with THEAD helper

2010-08-09 Thread Skiros
Sorry i expected "ab" On 9 ago, 16:19, Skiros wrote: > Hello ! > > I have a doubt using THEAD helper. THEAD("a", "b") gives me as result > "ab". > I expected "ab". > > Why is not the same operation like TR("a", "b")  = "a td>b" ?