webforwardresourcedetails.jspf

来自「这是linux下ssl vpn的实现程序」· JSPF 代码 · 共 45 行

JSPF
45
字号
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>

<table class="resourceDetails">
	<tr class="formText">
		<td class="label">
			<div class="required">
				<bean:message key="webForwardWizard.webForwardResourceDetails.resourceName" bundle="webForwards" />
			</div>
		</td>
		<td class="value">
			<html:text property="resourceName" size="20" />
		</td>
	</tr>
	<tr class="formTextArea">
		<td class="label">
			<div class="required">
				<bean:message key="webForwardWizard.webForwardResourceDetails.resourceDescription" bundle="webForwards" />
			</div>
		</td>
		<td class="value">
			<html:textarea property="resourceDescription" />
		</td>
	</tr>
	<tr class="formCombo">
		<td class="label">
			<bean:message key="webForwardWizard.webForwardResourceDetails.parent" bundle="webForwards" />
		</td>
		<td class="value">
			<html:select property="parentResourcePermission">
				<html:optionsCollection value="value" label="label" property="availableParentResourcePermissions" />
			</html:select>
		</td>
	</tr>
	<tr class="formCheckbox">
		<td class="label">
			<bean:message key="createResource.addToFavorites" bundle="policyframework" />
		</td>
		<td class="value">
			<html:checkbox property="favorite" />
		</td>
	</tr>
</table>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?