Hello,
I'm new to couchCMS. It is really great and easy for development with out and less knowledge of php. thanks for giving couchCMS.
Here I struggle with one of the following requirement.
i.e., I have to make a Repeatable inside repeatable
here is the structure
example
can you please give me solution for below code.
<cms:template title='Example' >
<cms:repeatable name='example'>
<cms:editable type='nicedit' toolbar='full' name='example_text' label='Text' />
<cms:editable type='image' name='example_thumb_image' label='Photo' show_preview='1' preview_width='75' input_width='100' col_width='150' />
<cms:repeatable name='example_gallery'>
<cms:editable type='image' name=example_gallery_image' label='Photo' show_preview='1' preview_width='75' input_width='100' col_width='150' />
</cms:repeatable >
</cms:repeatable >
**************************************************************
<cms:show_repeatable 'example' >
<cms:show example_text />
<div class="gal">
<cms:show_repeatable 'example_gallery' >
<a class="fancybox-thumbs" rel="fancybox-thumb" href=" <cms:show example_gallery_image />"> <input type="image" name="submit" value="submit" src="<cms:show example_thumb_image />" /> </a>
</cms:show_repeatable >
</div>
</cms:show_repeatable >
I'm anticipating for your reply
thanks,
Prabu
I'm new to couchCMS. It is really great and easy for development with out and less knowledge of php. thanks for giving couchCMS.
Here I struggle with one of the following requirement.
i.e., I have to make a Repeatable inside repeatable
here is the structure
example
- - example 1
- - text
- - thumbImage
- - images
- - image 1
- - image 2
- - image 3
- - example 2
- - text
- - thumbImage
- - images
- - image 1
- - image 2
- - image 3
- - image 4
can you please give me solution for below code.
<cms:template title='Example' >
<cms:repeatable name='example'>
<cms:editable type='nicedit' toolbar='full' name='example_text' label='Text' />
<cms:editable type='image' name='example_thumb_image' label='Photo' show_preview='1' preview_width='75' input_width='100' col_width='150' />
<cms:repeatable name='example_gallery'>
<cms:editable type='image' name=example_gallery_image' label='Photo' show_preview='1' preview_width='75' input_width='100' col_width='150' />
</cms:repeatable >
</cms:repeatable >
**************************************************************
<cms:show_repeatable 'example' >
<cms:show example_text />
<div class="gal">
<cms:show_repeatable 'example_gallery' >
<a class="fancybox-thumbs" rel="fancybox-thumb" href=" <cms:show example_gallery_image />"> <input type="image" name="submit" value="submit" src="<cms:show example_thumb_image />" /> </a>
</cms:show_repeatable >
</div>
</cms:show_repeatable >
I'm anticipating for your reply
thanks,
Prabu