📄 moduleitemmanage.xhtml
字号:
<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" renderKitId="AJAX" xmlns:h="http://java.sun.com/jsf/html"> <w:head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> </w:head> <w:page title="#{module.moduleItemManageBean.messages.moduleItemManagePageTitle}"> <w:form style="height:95%"> <w:dataGrid paged="true" rows="15" id="itemDataGrid" var="data" toolBarPosition="bottom" style="height:282px;#height:258px"> <w:pagingToolbar for="itemDataGrid"> <w:button id="add" image="../resources/images/new.gif" /> <w:button id="modify" image="../resources/images/modify.png" /> <w:button id="del" image="../resources/images/delete.gif" /> </w:pagingToolbar> <w:outputColumn header="#{module.moduleItemManageBean.messages.moduleItemManageModuleItemName}" id="name" width="100"></w:outputColumn> <w:outputColumn header="#{module.moduleItemManageBean.messages.moduleItemManageModuleItemIcon}" id="icon"></w:outputColumn> <w:outputColumn header="#{module.moduleItemManageBean.messages.moduleItemManageIconPreview}" value="<img src='#{module.moduleItemManageBean.getIconUrl(data.icon)}' />" width="70" requireEscape="false"></w:outputColumn> <w:outputColumn header="#{module.moduleItemManageBean.messages.moduleItemManageModuleItemUrl}" id="url"></w:outputColumn> <w:outputColumn header="#{module.moduleItemManageBean.messages.moduleItemManageParentModule}" value="#{data.module.name}" width="95"></w:outputColumn> </w:dataGrid> </w:form> <w:form> <layout:window title="#{module.moduleItemManageBean.messages.detailDialogTitle}" width="280" height="160" id="detailItemDialog" y="20" modal="true"> <layout:panelGrid height="130" columns="2" cellspacing="5px" width="100%"> <layout:cell style="padding-right: 3px;" align="right"> <h:outputLabel for="itemName"></h:outputLabel> </layout:cell> <w:textField id="itemName" width="170"></w:textField> <layout:cell style="padding-right: 3px;" align="right"> <h:outputLabel for="itemIcon"></h:outputLabel> </layout:cell> <w:textField id="itemIcon" width="170"></w:textField> <layout:cell style="padding-right: 3px;" align="right"> <h:outputLabel for="itemUrl"></h:outputLabel> </layout:cell> <w:textField id="itemUrl" width="170"></w:textField> <layout:cell colspan="2" rowspan="1" align="right"> <layout:panelGrid columns="2"> <w:button id="ok" image="../resources/images/save.gif" /> <w:button id="cancel" image="../resources/images/cancel.png" /> </layout:panelGrid> </layout:cell> </layout:panelGrid> </layout:window> </w:form> </w:page></f:view>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -