Smarty Forum Index Smarty
WARNING: All discussion is moving to https://reddit.com/r/smarty, please go there! This forum will be closing soon.

use CYCLE over multiple rows ?

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> General
View previous topic :: View next topic  
Author Message
sarahfoxnz
Smarty Regular


Joined: 11 Apr 2010
Posts: 76

PostPosted: Fri Aug 29, 2014 9:25 am    Post subject: use CYCLE over multiple rows ? Reply with quote

Hi.

I've seen the example where you can use CYCLE to change the CLASS of a table row (TR), & then it changes background colours for each row.

Is there a way to use CYCLE over multiple rows at once.

EG - two rows have one CLASS value, the next lot f two rows has another class, & then reverts to the first class.

<tr class="one"></tr>
<tr class="one"></tr>
<tr class="two"></tr>
<tr class="two"></tr>
<tr class="one"></tr>
<tr class="one"></tr>
<tr class="two"></tr>
<tr class="two"></tr>


the way to cycle over one row is easy enough :)
Back to top
View user's profile Send private message
U.Tews
Administrator


Joined: 22 Nov 2006
Posts: 5068
Location: Hamburg / Germany

PostPosted: Sat Aug 30, 2014 6:01 pm    Post subject: Reply with quote

You can assign the result of {cycle} to a variable.

See http://www.smarty.net/docs/en/language.function.cycle.tpl

Code:

{cycle values='one,two' assign='foo'}
<tr class="{$foo}"></tr>
<tr class="{$foo}"></tr>
{cycle assign='foo'}
<tr class="{$foo}"></tr>
<tr class="{$foo}"></tr>
{cycle assign='foo'}
<tr class="{$foo}"></tr>
<tr class="{$foo}"></tr>
{cycle assign='foo'}
<tr class="{$foo}"></tr>
<tr class="{$foo}"></tr>
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> General All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Protected by Anti-Spam ACP