📄 confirmcontent.jspf
字号:
<%@ page import="com.sslexplorer.navigation.forms.ConfirmForm" %>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="/sslexplorer/taglibs/explorer" prefix="explorer" %>
<%@ taglib uri="/sslexplorer/taglibs/navigation" prefix="navigation" %>
<%@ taglib uri="/sslexplorer/taglibs/security" prefix="security" %>
<div id="page_confirm">
<div class="titled_dialog_content">
<bean:define id="confirmForm" name="confirmForm"/>
<div>
<table class="titled_dialog_table">
<thead>
<tr>
<td colspan="2">
<bean:write name="confirmForm" property="subtitle" />
</td>
</tr>
</thead>
<tbody>
<tr>
<td class="icon">
<bean:define id="themePath"><explorer:themePath/></bean:define>
<img src="<%= themePath + "/images//dialog/" + ((ConfirmForm)confirmForm).getType() + ".gif" %>"/>
</td>
<td class="text" align="<bean:write name='confirmForm' property='align'/>">
<table class="dialog_form_table">
<tbody>
<tr>
<td>
<div class="confirmMessage">
<logic:iterate name="confirmForm" property="messages" id="message">
<bean:write filter="false" name="message"/><br/>
</logic:iterate>
</div>
</td>
</tr>
<logic:notEmpty name="confirmForm" property="exceptionMessage">
<logic:notEqual name="confirmForm" property="exceptionMessage" value="">
<tr>
<td class="exceptionMessage">
<bean:write name="confirmForm" property="exceptionMessage"/>
</td>
</tr>
</logic:notEqual>
</logic:notEmpty>
<logic:notEmpty name="confirmForm" property="traceMessage">
<logic:notEqual name="confirmForm" property="traceMessage" value="">
<tr>
<td class="traceMessage">
<pre><bean:write name="confirmForm" property="traceMessage"/></pre>
</td>
</tr>
</logic:notEqual>
</logic:notEmpty>
</tbody>
</table>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">
<logic:iterate id="option" type="com.sslexplorer.navigation.Option" name="confirmForm" property="options">
<logic:notEmpty name="option" property="forward">
<input class="<%= option.getStyleId() %>" onclick="self.location = '<bean:write name='option' property='forward'/>' ; return false" type="button" value="<bean:write name='option' property='label'/>"/>
</logic:notEmpty>
<logic:empty name="option" property="forward">
<security:checkAuthenticated requiresAuthentication="true">
<input class="<%= option.getStyleId() %>" onclick="javascript: if(history.length > 1) {history.back();} else {window.close();} ; return false" type="button" value="<bean:write name='option' property='label'/>"/>
</security:checkAuthenticated>
<security:checkAuthenticated requiresAuthentication="false">
<input class="<%= option.getStyleId() %>" onclick="javascript: window.close(); return false" type="button" value="<bean:write name='option' property='label'/>"/>
</security:checkAuthenticated>
</logic:empty>
</logic:iterate>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -