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

template.simple.form-common.ftl Maven / Gradle / Ivy

The newest version!
<#--
/*
 * $Id: form.ftl 590812 2007-10-31 20:32:54Z apetrelli $
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
-->
<#if (attributes.validate!false == false)><#rt/>
    <#if attributes.onsubmit?has_content><#rt/>
        ${tag.addParameter('onsubmit', "${attributes.onsubmit}") }
    


<#if attributes.id?has_content>
 id="${attributes.id}"<#rt/>

<#if attributes.name?has_content>
 name="${attributes.name}"<#rt/>

<#if attributes.onsubmit?has_content>
 onsubmit="<#outputformat 'JavaScript'>${attributes.onsubmit}"<#rt/>

<#if attributes.onreset?has_content>
 onreset="<#outputformat 'JavaScript'>${attributes.onreset}"<#rt/>

<#if attributes.action?has_content>
 action="${attributes.action}"<#rt/>

<#if attributes.target?has_content>
 target="${attributes.target}"<#rt/>

<#if attributes.method?has_content>
 method="${attributes.method}"<#rt/>
<#else>
 method="post"<#rt/>

<#if attributes.enctype?has_content>
 enctype="${attributes.enctype}"<#rt/>

<#if attributes.cssClass?has_content>
 class="${attributes.cssClass}"<#rt/>

<#if attributes.cssStyle?has_content>
 style="${attributes.cssStyle}"<#rt/>

<#if attributes.title?has_content>
 title="${attributes.title}"<#rt/>

<#if attributes.acceptcharset?has_content>
 accept-charset="${attributes.acceptcharset}"<#rt/>

<#include "/${attributes.templateDir}/${attributes.expandTheme}/dynamic-attributes.ftl" />




© 2015 - 2024 Weber Informatics LLC | Privacy Policy