blob: ac05bc1cbc3ca9cc03dfc1f9038bd8cf245b718a [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
* 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.
-->
<!-- XXX This is an old page. Content might not be up to date. Needs to be refactored, or just deleted. -->
<f:view
xmlns:tc="http://myfaces.apache.org/tobago/component"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core">
<tc:page id="page">
<f:facet name="layout">
<tc:gridLayout/>
</f:facet>
<!-- <tc:gridLayoutConstraint width="600px" height="300px"/> -->
<tc:out value="Click 'fill' and than 'submit' and check that the 2. field has not modified, because the hidden field 2 has rendered=false"/>
<tc:hidden id="h1" value="#{hiddenController.value1}"/>
<tc:in label="Value of the hidden field 1 on server"
labelWidth="350px" value="#{hiddenController.value1}" disabled="true"/>
<tc:hidden id="h2" value="#{hiddenController.value2}" rendered="false"/>
<tc:in label="Value of the hidden field 2 on server (rendered=false)"
labelWidth="350px" value="#{hiddenController.value2}" disabled="true"/>
<tc:hidden id="h3" value="#{hiddenController.value3}" rendered="true"/>
<tc:in label="Value of the hidden field 3 on server (rendered=true)"
labelWidth="350px" value="#{hiddenController.value3}" disabled="true"/>
<tc:button id="fill" label="1. fill hidden fields" onclick="fillHiddenFields();"/>
<tc:button label="2. submit hidden fields..."/>
<tc:panel/>
<tc:script>
function fillHiddenFields() {
jQuery('#page\\:h1').val("new " + jQuery('#page\\:h1').val());
jQuery('#page\\:h2').val("new " + jQuery('#page\\:h2').val());
jQuery('#page\\:h3').val("new " + jQuery('#page\\:h3').val());
}
// todo: the test code is not full automated
</tc:script>
</tc:page>
</f:view>