<%@ page language="java" contentType="text/html;charset=UTF-8"%> <%@ page import="org.apache.beehive.netui.script.common.DataAccessProviderBean"%> <%@ taglib uri="http://beehive.apache.org/netui/tags-databinding-1.0" prefix="netui-data"%> <%@ taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui"%> <%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>

Disable Form Post Results

This test dumps the contents ofthe request parameter names posted by the disable test. The only control not disabled is a select that has individual options disabled. It also reports the contents of the form that was posted to the action.


Parameter Data

<% java.util.Enumeration e = request.getParameterNames(); java.util.List l = java.util.Collections.list(e); request.setAttribute("parameterNames",l); %>
  • <% DataAccessProviderBean bean = (DataAccessProviderBean) pageContext.getAttribute("container"); String name = (String) bean.getItem(); request.setAttribute("values",request.getParameterValues(name)); %>

Form Data

TextBox 
TextArea 
Select/Options
 
Select/Options Source:
 
Select (option Disabled):
 
radioGroup 
radioGroup2 
check1 
check2 
CheckBox Group/Options Source:
 
CheckBox Group/Options