- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2016 09:37 AM
Would actually address this question to those with experience in scripting/programming.
There are cases when you want to skip to next looping iteration using continue; syntax in programming.
What jelly script syntax do you use to do such approach?
Example:
<j:while test="...">
<j:continue />
</j:while>
Is there such thing? (i.e. <j:continue>) Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2016 01:30 PM
There is no continue jelly tag. However the workaround is the include IF tag (<j:if test=""></j:if>) inside your while loop to run the code block if the condition meets, else the IF block skips and while continues to next record.
- Hardik Vora
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2016 01:30 PM
There is no continue jelly tag. However the workaround is the include IF tag (<j:if test=""></j:if>) inside your while loop to run the code block if the condition meets, else the IF block skips and while continues to next record.
- Hardik Vora