accountedit.xhtml

来自「模拟简单的会计信息录入管理应用」· XHTML 代码 · 共 50 行

XHTML
50
字号
<f:view xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core"	xmlns:w="http://www.apusic.com/jsf/widget" xmlns:layout="http://www.apusic.com/jsf/layout"	xmlns:ajax="http://www.apusic.com/jsf/ajax" xmlns:h="http://java.sun.com/jsf/html"	renderKitId="AJAX">	<w:head>		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />	</w:head>	<w:page title="Edit Account">		<w:form>			<w:panelBox style="height: 240px;">				<layout:panelGrid columns="2">					<layout:cell style="padding-right: 3px;" align="right">						<h:outputLabel for="edit_name"></h:outputLabel>					</layout:cell>					<w:textField id="edit_name" width="170"></w:textField>					<layout:cell style="padding-right: 3px;" align="right">						<h:outputLabel for="edit_number"></h:outputLabel>					</layout:cell>					<w:textField id="edit_number" width="170"></w:textField>					<layout:cell style="padding-right: 3px;" align="right">						<h:outputLabel for="edit_longNumber"></h:outputLabel>					</layout:cell>					<w:textField id="edit_longNumber" width="170"></w:textField>					<layout:cell style="padding-right: 3px;" align="right">						<h:outputLabel for="edit_level"></h:outputLabel>					</layout:cell>					<w:numberField id="edit_level" width="170"></w:numberField>					<layout:cell style="padding-right: 3px;" align="right">						<h:outputLabel for="edit_isLeaf"></h:outputLabel>					</layout:cell>					<w:combo id="edit_isLeaf" width="170" editable="false">						<f:selectItems id="edit_isLeafs" />					</w:combo>					<layout:cell style="padding-right: 3px;" align="right">						<h:outputLabel for="edit_isBank"></h:outputLabel>					</layout:cell>					<w:combo id="edit_isBank" width="170" editable="false">						<f:selectItems id="edit_isBanks" />					</w:combo>										<layout:cell colspan="2" style="width: 100%" align="right">						<layout:panelGrid columns="2">							<w:button id="save" />							<w:button id="close" />						</layout:panelGrid>					</layout:cell>				</layout:panelGrid>			</w:panelBox>		</w:form>	</w:page></f:view>

⌨️ 快捷键说明

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