Categories > TinyButStrong general >

Missing Tag after Headergrp

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: Karl
Date: 2006-07-05
Time: 22:15

Missing Tag after Headergrp

Hi,
I'm trying to get a line of weeks after a header which contains the month.

The template

<table>
    <tr>
        <td>
        [FreeBook.SMonthName;block=tr;headergrp=SMonthName]
        </td>
    </tr>
    <tr>
        <td>
        <p>Week [FreeBook.Woche;block=td]<br />
            [FreeBook.SDate] - [FreeBook.EDate]<br />
            [FreeBook.Price] &euro;
            </p>
        </td>
    </tr>
</table>   

The generated code ist missing the leading <tr> tag at the beginning of the line.


<table>
    <tr>
        <td>
            Juli 2006
        </td>
    </tr><td>
        <p>Woche 30<br />
            23.07. - 29.07.<br />
            750 &euro;
            </p>
        </td>
        <td>
        <p>Woche 31<br />
            30.07. - 05.08.<br />
            750 &euro;
            </p>
        </td>
    ...


Please assist. Best regards
Karl

TBS 3.1, PHP 4.3.10, MySQL 3.23.49

By: TomH
Date: 2006-07-05
Time: 23:09

Re: Missing Tag after Headergrp

I think you need to do...block=tr in the second section like this...
<tr>
  <td>
  <p>Week [FreeBook.Woche;block=tr]<br />
   [FreeBook.SDate] - [FreeBook.EDate]<br />
   [FreeBook.Price] &euro;
   </p>
  </td>
</tr>

HTH
By: Karl
Date: 2006-07-06
Time: 19:56

Re: Missing Tag after Headergrp

Hi TomH,
thanx for your answer, but I did not intent to have "Weeks" in a column. I wanted to get them in a row.
In fact I could not manage to use "block=td;serial" in combination with a headergrp. Do you have any ideas how that should look like.

Karl