加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
wizard_shortcutCustom.jsp 4.96 KB
一键复制 编辑 原始数据 按行查看 历史
腾硕软件 提交于 2015-04-03 00:21 . 初始提交
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@page contentType="text/html; charset=GBK" language="java"%>
<%@page import="com.tansuosoft.discoverx.web.ui.portal.ShortcutsConfig,com.tansuosoft.discoverx.web.ui.portal.ShortcutsTreeViewRender,com.tansuosoft.discoverx.web.ui.portal.ShortcutsRender"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<%@include file="/jspinit.jsp" %>
<%jspContext.setNoCache(); %>
<meta http-equiv="content-type" content="text/html; charset=GBK" />
<title><%=com.tansuosoft.discoverx.common.CommonConfig.getInstance().getSystemName()%></title>
<%=jspContext.outputJs("common.js",pathContext.getCommonJSPath()) %>
<%=jspContext.outputJs("treeview.js",pathContext.getFrameJSPath()) %>
<%=jspContext.outputJs("dragdrop.js",pathContext.getFrameJSPath()) %>
<%=jspContext.outputJs("wizard_shortcutCustom.js",pathContext.getFrameJSPath()) %>
<%=jspContext.outputCss("common.css",pathContext.getThemePath()) %>
<%=jspContext.outputCss("wizard.css",pathContext.getThemePath()) %>
<%=jspContext.outputCss("treeview.css",pathContext.getThemePath()) %>
<%=jspContext.outputCss("wizard_shortcutCustom.css",pathContext.getThemePath()) %>
<%@include file="/jsinit.jsp" %>
<%
String punid=request.getParameter("punid");
String id=request.getParameter("id");
String caption = null;
if(id.equalsIgnoreCase("shortcutActions")){
caption = "快捷操作";
}
if(id.equalsIgnoreCase("shortcutLinks")){
caption = "快捷链接";
}
%>
</head>
<body>
<form>
<div id="wizcontainer">
<div id="wiztitle">
<div class="wiztl"></div>
<div id="wizcaptioncontainer">
<div id="wizcaption"></div>
<div id="wizclose" onclick="Wizard.close();" onmouseover="Wizard.cmx(this,'h');" onmouseout="Wizard.cmx(this);" onmousedown="Wizard.cmx(this,'d');" onmouseup="Wizard.cmx(this,'h');"></div>
</div>
<div class="wiztr"></div>
</div>
<div id="wizcontainerouter">
<div id="wizbl"></div>
<div id="wizcontainerinner">
<div id="wizheader"></div>
<div id="wizbody">
<div id="ssrc">
<div id="ssrctitle"><label for="ssrc">请选择您需要的<%=caption%></label></div>
<div id="ssrccontent"></div>
</div>
<div id="sbtn">
<p />
<input class="btn" type="button" value=" 选择->" onclick="Actions.select();" title="把左边待选列表中选中的条目添加到右边的目标列表。" /><p />
<input class="btn" type="button" value=" 全选->>" onclick="Actions.selectAll();" title="把左边待选列表中所有的条目添加到右边的目标列表。" /><p />
<input class="btn" type="button" value="<-删除 " onclick="Actions.remove();" title="删除右边目标列表中的选中的数据。" /><p />
<input class="btn" type="button" value="<<-全删 " onclick="Actions.removeAll();" title="删除右边目标列表中的所有数据。" /><p />
<input class="btn" type="button" value="上移 " onclick="Actions.moveUp();" title="删除右边目标列表中的选中的数据。" /><p />
<input class="btn" type="button" value="下移 " onclick="Actions.moveDown();" title="删除右边目标列表中的所有数据。" /><p />
</div>
<div id="stgt">
<div id="stgttitle"><label for="stgt">我的<%=caption%></label></div>
<div id="stgtcontent"></div>
</div>
<div id="setoption"><input id="setdefaultflag" name="setdefaultflag" type="checkbox" value="0" onclick="this.value='1';"/><label for="setdefaultflag">&nbsp;恢复系统默认<%=caption%>&nbsp;</label></div>
</div>
<div id="wizfooter">
<button id="wizbtn_prev" type="button" class="hided" onclick="Wizard.prev();">上一步</button>
<button id="wizbtn_next" type="button" onclick="Wizard.next();">下一步</button>
<button id="wizbtn_done" type="button" onclick="Wizard.done();">完成</button>
<button id="wizbtn_cancel" type="button" onclick="Wizard.close();">取消</button>
</div>
</div>
<div id="wizbr"></div>
<div id="wizbb"></div>
</div>
</div>
</form>
<%=jspContext.outputJs("wizard.js",pathContext.getFrameJSPath()) %>
<script type="text/javascript" language="javascript">
EVENT.add(window, 'load', function() {
var id = '<%=id%>';
var descriptions=new Array(4);
descriptions[0]='此向导将指导您进行' + '<%=caption%>' + '的添加、删除、移位等个性化配置。';
Wizard.init({ step: 1,stepDescriptions:descriptions,ondone:Actions.done});
Wizard.setCaption('<%=caption%>' + '自定义向导');
ELS.selectSource = document.getElementById('ssrccontent');
ELS.selectTarget = document.getElementById('stgtcontent');
var tvroot = null;
if(id == 'shortcutActions') {
tvroot = createTreeView({nodeType:0,<%=new ShortcutsTreeViewRender(ShortcutsConfig.getInstance().getShortcutActions()).render(jspContext)%>});
}
if(id == 'shortcutLinks'){
tvroot = createTreeView({nodeType:0,<%=new ShortcutsTreeViewRender(ShortcutsConfig.getInstance().getShortcutLinks()).render(jspContext)%>});
}
tvroot.nodeType=0;
if(tvroot && tvroot.error){
alert(tvroot.label);
}
else{
DefaultSelectorTemplet.shortcutType = id;
tvroot.initCustomizer();
}
});
new wizardDraggable(parent.document.getElementById("_" +'<%=id%>' ));
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化