source: vanHelsing/trunk/gui/WebContent/schedule.jspx@ 832

Last change on this file since 832 was 832, checked in by tobias, on Mar 5, 2010 at 6:03:21 PM

views and data objects of the resource types added.
basic logging with log4j for the beanUtil class.
Configuration and JobSchedule class renamed.

File size: 1.3 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<jsp:root version="1.2"
3 xmlns:jsp="http://java.sun.com/JSP/Page"
4 xmlns:f="http://java.sun.com/jsf/core"
5 xmlns:h="http://java.sun.com/jsf/html"
6 xmlns:ice="http://www.icesoft.com/icefaces/component">
7<jsp:directive.page contentType="text/html;charset=utf-8" />
8<f:view>
9 <ice:outputDeclaration doctypeRoot="HTML" doctypePublic="-//W3C//DTD HTML 4.01 Transitional//EN" doctypeSystem="http://www.w3.org/TR/html4/loose.dtd"/>
10 <html>
11 <head>
12 <title><ice:outputText value="ICEfaces, Ajax for Java EE" /></title>
13 <ice:outputStyle href="./xmlhttp/css/rime/rime.css" />
14 </head>
15 <body>
16
17 <ice:outputText value="Thank you for using ICEfaces." />
18 <ice:form>
19 <ice:messages />
20
21 </ice:form>
22 <ice:panelGroup id="Schedule" style="visibility:visible">
23 <ice:panelGrid coulumns="2">
24 <ice:form>
25 <ice:outputLabel for="schedule.Name" value="Name: "/>
26 <ice:inputText id="schedule.Name" value"#{baum.selectedNode.ScheduleItem.name}" />
27
28 <ice:outputLabel for="schedule.Run" value="Run: "/>
29 <ice:inputText id="schedule.Run" value"#{baum.selectedNode.ScheduleItem.run}" />
30 </ice:form>
31 </ice:panelGrid>
32 </ice:panelGroup>
33
34 </body>
35 </html>
36</f:view>
37</jsp:root>
Note: See TracBrowser for help on using the repository browser.