Share » Forums » Developer » delimiter modulo

delimiter modulo

delimiter modulo

Tuesday 13 April 2004 5:53:00 am - 8 replies

Author Message

Eirik Alfstad Johansen

Thursday 29 April 2004 3:32:04 am

Hi guys,

Still need an answer to this question, and the client is getting impatient. :)

Sincerely,

Eirik Johansen
http://www.netmaking.no/

Sincerely,

Eirik Alfstad Johansen
http://www.netmaking.no/

Bård Farstad

Thursday 29 April 2004 3:37:14 am

This will depend on which cells. If you want to add an empty cell between any cell you can do:

<table>
<tr>
{section loop=10}
    <td>
      Put content here
    </td>
    {delimiter modulo=2}
        <td>This is the empty cell</td>
        </tr>
        <tr>
    {/delimiter}
{/section}
</tr>
</table>

--bård

Documentation: http://ez.no/doc

Eirik Alfstad Johansen

Thursday 29 April 2004 3:58:42 am

Hi Bård,

This is the output I'm trying to generate:

<tr>
	<td>content</td>
	<td>&nbsp;</td>
	<td>content</td>
</tr>
<tr>
	<td>content</td>
	<td>&nbsp;</td>
	<td>content</td>
</tr>

Sincerely,

Eirik Johansen
http://www.netmaking.no/

Sincerely,

Eirik Alfstad Johansen
http://www.netmaking.no/

Bård Farstad

Thursday 29 April 2004 4:21:49 am

Try this one:

<table border="1">
<tr>
{section var=item loop=10}
    <td>Cell nr {$item}
    </td>
    {delimiter modulo=1}
        {section show=$item.number|mod(2)|eq(0)}
         <td>&nbsp;</td>
        {section-else}
           </tr>
           <tr>
        {/section}
    {/delimiter}
{/section}
</tr>
</table>

--bård

Documentation: http://ez.no/doc

Paul Forsyth

Thursday 29 April 2004 4:36:29 am

You could always use css to pad the first cell in each row out a little,

paul

--
http://www.visionwt.com

Eirik Alfstad Johansen

Friday 30 April 2004 12:23:56 am

Thanks a lot, Bård! Your tip did the trick. I took the liberty of adding your code as a comment to the section function documentation page (http://ez.no/ez_publish/documentation/development/libraries/ez_template/functions/section).

Sincerely,

Eirik Johansen

Sincerely,

Eirik Alfstad Johansen
http://www.netmaking.no/

yang xing

Tuesday 16 November 2010 5:59:38 pm

I needed this, thank you!

fljaweiu White

Wednesday 15 December 2010 12:23:25 am

Try this one:

<table border="1">
<tr>
{section var=item loop=10}
    <td>Cell nr {$item}
    </td>
    {delimiter modulo=1}
        {section show=$item.number|mod(2)|eq(0)}
         <td> </td>
        {section-else}
           </tr>
           <tr>
        {/section}
    {/delimiter}
{/section}
</tr>
</table>

--bård

Thank you sharing with me. i really looking for such search process.

cartier rolling ring earrings,cartier love earrings online on sale and we design a cartier c logo .
Cartier Jewelry http://www.cartier4us.com
cartier c logo earrings http://www.cartier4us.com/Cartier-Earrings-11.html
cartier love bracelet http://www.cartier4us.com/Cartier-Love-1.html
cartier pens http://www.cartier4us.com/Cartier-Pen-5.html

You must be logged in to post messages in this topic!

36 542 Users on board!

Forums menu