Hi,
I am struggling to edit individual section records in my WebEdit using the below code snippet. Everytime I edit edit a certain record its always populating 1 record which happens to be the last record in the data source.
I thought of using FS_LIST to try overcome this but, FS_LIST doesnt give me some felxibility I want to achieve with this section. Your prompt response will be appreciated. Anyone who have some advice on this please give guidance. Thanks.
<div id="site-banner-outer">
<div class="image_reel">
$CMS_FOR(alist, list_function)$
$CMS_RENDER(template:"WEBeditInplaceEditBegin")--$
$--CMS_IF(alist.start_date <= #global.now && alist.end_date > #global.now)--$
$-- Inner code --$
<div id="site-banner" style="background: transparent url('$CMS_REF(alist.banner_image)$') no-repeat top left;">
<div id="banner-links">
<ul id="banner-links">
My other value listing here....
</ul>
</div>
</div>
$--CMS_END_IF--$
$CMS_RENDER(template:"WEBeditInplaceEditEnd")$
$CMS_END_FOR$
</div>
</div>