All Downloads are FREE. Search and download functionalities are using the official Maven repository.

template.simple.checkboxlist.ftl Maven / Gradle / Ivy

There is a newer version: 2.2.5
Show newest version
<#assign itemCount = 0/>
<#if parameters.list?exists>
    <@ww.iterator value="parameters.list">
        <#assign itemCount = itemCount + 1/>
        <#if parameters.listKey?exists>
            <#assign itemKey = stack.findValue(parameters.listKey)/>
        <#else>
            <#assign itemKey = stack.findValue('top')/>
        
        <#if parameters.listValue?exists>
            <#assign itemValue = stack.findString(parameters.listValue)/>
        <#else>
            <#assign itemValue = stack.findString('top')/>
        

        <#if tag.contains(parameters.nameValue, itemKey)>
 checked="checked"<#rt/>
        
        <#if parameters.disabled?default(false)>
 disabled="disabled"<#rt/>
        
        <#if parameters.title?exists>
 title="${parameters.title?html}"<#rt/>
        
        <#include "/${parameters.templateDir}/simple/scripting-events.ftl" />
/>

    
<#else>
   





© 2015 - 2025 Weber Informatics LLC | Privacy Policy