<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<s:head theme="ajax"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><s:text name="navigator.searchfreedevice"/></title>
</head>
<body>
<table>
<tr>
<td height="20" class="f-12 c-2" ><s:text name="navigator.here"/> >> <s:text name="navigator.searchfreedevice"/></td>
</tr>
</table>
<s:fielderror/>
<s:actionerror/>
<s:actionmessage/>
<table width="100%" border="0" cellpadding="1" cellspacing="1" class="b-1 f-12" style="margin-top: 0px">
<s:form theme="simple" action="doSearchAvailableDeviceAction">
<tr>
<td width="100%" height="20" align="center" bgcolor="#87CEEB" colspan="6">
</td>
</tr>
<tr>
<td height="20" class = "ourlabel" ><s:text name="label.startDate"/></td>
<td bgcolor="#FFFFFF"><s:textfield name="searchDTO.startDate"
id="searchDTO.startDate" readonly="true"/> <input type="Button"
style="background:url(${pageContext.request.contextPath}/view/images/btn_m.GIF);width:20px;background-color:#99CCFE;"
onclick="gfPop.fPopCalendar(document.getElementById('searchDTO.startDate'))"
name="FDatetime"></td>
<td class = "ourlabel"><s:text name="label.endDate"/></td>
<td bgcolor="#FFFFFF"><s:textfield name="searchDTO.endDate"
id="searchDTO.endDate" readonly="true"/> <input type="Button"
style="background:url(${pageContext.request.contextPath}/view/images/btn_m.GIF);width:20px;background-color:#99CCFE;"
onclick="gfPop.fPopCalendar(document.getElementById('searchDTO.endDate'))"
name="FDatetime"></td>
<td class = "ourlabel"><s:text name="label.itsplant"/></td>
<td bgcolor="#FFFFFF"><s:select name="searchDTO.corpID"
list="#session.allPlantInfo" listKey="strWorksID" listValue="strWorks"
headerKey="-1" headerValue="所有工场" theme="simple" cssStyle="width:150px"></s:select></td>
</tr>
<tr>
<td class = "ourlabel"><s:text name="label.startTime"/></td>
<td bgcolor="#FFFFFF"><s:select name="searchDTO.startTimeHour"
list="#session.hourList" /><s:text name="label.hour"/> <s:select name="searchDTO.startTimeMinute"
list="#session.minuteList" /><s:text name="label.minute"/></td>
<td class = "ourlabel"><s:text name="label.endTime"/></td>
<td bgcolor="#FFFFFF"><s:select name="searchDTO.endTimeHour"
list="#session.hourList" /><s:text name="label.hour"/> <s:select name="searchDTO.endTimeMinute"
list="#session.minuteList" /><s:text name="label.minute"/></td>
<td height="20" class = "ourlabel"><s:text name="label.usableTime"/></td>
<td bgcolor="#FFFFFF"><s:select name="searchDTO.usableTimeHour"
list="#session.hourList" /><s:text name="label.hour"/><s:select name="searchDTO.usableTimeMinute"
list="#session.minuteList" /><s:text name="label.minute"/></td>
</tr>
<tr>
<td class = "ourlabel"><s:text name="label.usaleNum"/></td>
<td bgcolor="#FFFFFF"><s:textfield name="searchDTO.usablePersonNum" maxLength="10"/></td>
<td class = "ourlabel"><s:text name="label.deviceType"/></td>
<td bgcolor="#FFFFFF"><s:select name="searchDTO.deviceTypeID"
list="#session.allDeviceTypeInfo" listKey="strTypeID" listValue="strType"
headerKey="-1" headerValue="所有类型" theme="simple"></s:select></td>
<td class = "ourlabel"><s:text name="label.lanboard"/></td>
<td bgcolor="#FFFFFF" align="left" colspan="1">
<table width="100%" class="f-12">
<tr>
<td align="center" width="20%"><s:text name="label.lan"/><s:select name="searchDTO.hasLAN" list="#{'1':'有','0':'无'}" listKey="key" listValue="value" headerValue="---" headerKey="-1"/></td>
<td align="center" width="20%"><s:text name="lable.board"/><s:select name="searchDTO.hasWhiteBoard" list="#{'1':'有','0':'无'}" listKey="key" listValue="value" headerValue="---" headerKey="-1"/></td>
<td bgcolor="#FFFFFF" align="right" width="30%"><s:submit name="sub" key="button.search"/></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" height="20" align="center" bgcolor="#87CEEB" colspan="6">
</td>
</tr>
</s:form>
</table>
<s:if test="tableListItem!=null&&tableListItem.size()>0">
<div id ="t1">
<s:include value="freeDeviceAjax.jsp"/>
</div>
<s:url id ="turnPage" value="turnPageForFreeDeviceAction.action"/>
<s:include value="../page.jsp"/>
</s:if>
</body>
</html>
分享到:
相关推荐
if ((today.year == newCal.getFullYear()) && (today.month == newCal.getMonth())) day = today.day; var tableCal = document.all.calendar; var intDaysInMonth = getDays(newCal.getMonth(), newCal....
if ((today.year == newCal.getFullYear()) && (today.month == newCal.getMonth())) { day = today.day; } ... for (var intWeek = 0; intWeek ; intWeek++) { for (var intDay = 0; intDay [intWeek].cells....
它获取用户选择的年份和月份,创建一个新的Date对象`newCal`,然后确定当月的第一天是星期几(`startDay`)。`day`变量跟踪当前日期,`daily`变量跟踪已填充到日历中的日期数。通过循环遍历表格的行和列,填充日期并...
- **`var newCal`:** 创建一个新的 `Date` 对象,表示当前选择的月份的第一天。 - **`var startDay`:** 获取 `newCal` 对应星期几的数字表示。 - **`var endDay`:** 获取指定月份的总天数。 - **`var daily`:** 记录...
它首先初始化一个新的日期对象`newCal`为当前月份的第一天,然后找出该月的第一天是星期几(`startDay`),以及该月的总天数(`endDay`)。`daily`变量用于跟踪日历中的当前日期。 5. 使用`for`循环遍历日历表格的...
在提供的文件列表中,“NewCal”可能是项目的主文件夹,里面可能包含了Xcode工程文件(.xcodeproj)、源代码文件(.swift或.m/.h)、资源文件(如图片、故事板文件等)以及可能的配置文件。打开这个文件夹,用Xcode...
最终,将编译生成的可执行文件(如NewCal.exe)以及必要的库文件(如QtCore4.dll和QtGui4.dll)打包在一起,以便在没有安装QT环境的计算机上运行。 7. **DLL文件**:在Windows平台上,动态链接库(DLL)文件是共享...
- `newCal`: 创建一个新的日期对象,用于表示日历的起始月份。 2. **函数定义**: - `getDays(month, year)`: 根据传入的月份和年份返回该月的天数。特别处理了闰年的情况(2月的天数)。 - `getToday()`: 返回...