📄 wordshareframe.jsp
字号:
<%@page pageEncoding="GBK" contentType="text/html; charset=GBK"%>
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<html>
<f:view>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<link href="../../../skin/<h:outputText escape="false" value="#{user.gxh}"/>/css/main.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
<script language="javascript" type="text/javascript">
var selectedJgryDm = "";
function saveDeleteJgryDm(box) {
var jgryDm = box.value;
var i;
if (box.checked) {
selectedJgryDm += jgryDm + ",,";
} else {
var selectedJgryDmArray;
selectedJgryDmArray = selectedJgryDm.split(",,");
selectedJgryDm = "";
for (i = 0; i < selectedJgryDmArray.length; i++) {
if (selectedJgryDmArray[i] != jgryDm && selectedJgryDmArray[i] != "") {
selectedJgryDm += selectedJgryDmArray[i] + ",,";
}
}
}
}
</script>
</head>
<body>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="3">
<tr>
<td class="subtitle">该文档已有的共享范围(共<h:outputText value="#{gzdaShare.wdgxJgryListSize}"/>个):</td>
</tr>
</table>
<h:dataTable value="#{gzdaShare.wdgxJgryList}" var="jgry" width="100%" cellspacing="3" styleClass="3Dtable2" headerClass="3Dtable-Title" rowClasses="3Dtable-Content">
<h:column>
<f:facet name="header">
<h:outputText escape="false" value=" "/>
</f:facet>
<h:outputText escape="false" value="<input type=\"checkbox\" onclick=\"saveDeleteJgryDm(this)\" value=\"#{jgry.swjgDm}\"/>"/>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="机构人员代码"/>
</f:facet>
<h:outputText value="#{jgry.sjswjgDm}"/>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="机构人员名称"/>
</f:facet>
<h:outputText value="#{jgry.mc}"/>
</h:column>
</h:dataTable>
</body>
</f:view>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -