<f:view xmlns:h="http://java.sun.com/jsf/html"
	xmlns:f="http://java.sun.com/jsf/core"
	xmlns:ice="http://www.icesoft.com/icefaces/component">

	<ice:outputDeclaration doctypeRoot="HTML"
		doctypePublic="-//W3C//DTD HTML 4.01 Transitional//EN"
		doctypeSystem="http://www.w3.org/TR/html4/loose.dtd" />

	<html>
		<head>
			<link rel='stylesheet' type='text/css' href='./xmlhttp/css/xp/xp.css' />
		</head>

		<body>
			<ice:form>

				<ice:panelGrid styleClass="contentLayoutGridStyle" columns="1"
					border="0">

					<ice:panelGroup style="width:730px;">
						<ice:panelGrid styleClass="componentLayoutRootTable" columns="1">
							
							<ice:inputText value="#{testBean.text}" 
										   style="background-color:#{testBean.style}"
										   partialSubmit="true"/>
							<ice:selectOneRadio value="#{testBean.color}"
												partialSubmit="true">
								<f:selectItems value="#{testBean.colors}"/>
							</ice:selectOneRadio>
						</ice:panelGrid>
					</ice:panelGroup>

				</ice:panelGrid>

			</ice:form>
		</body>
	</html>
</f:view>
