- 注册时间
- 2014-7-31
- 最后登录
- 1970-1-1
- 阅读权限
- 10
- 积分
- 40
- 精华
- 0
- 帖子
- 7
|
本帖最后由 丹青颜 于 2014-8-27 18:40 编辑
felt 发表于 2014-8-27 15:08
请提供重现的html页面,光两张图如何分析 - 这是子页面的部分内容
- <body>
- <form style="height:100%;">
- <div class="mini-toolbar" style="padding:2px;border-top:0px;border-left:0;border-right:0;text-align:center;">
- <span style="padding-left:5px;">名称:
- <input class="mini-textbox" id="key" style="width:150px;" showClose="true"/>
- <a class="mini-button" onclick="query" style="width:60px;margin-left:5px;">查询</a></span>
- </div>
- <div class="mini-fit">
- <ul class="mini-tree" id="tree1" url="${ctx}/unitInfo/getAll.do" style="height:100%;padding:5px;"
- showTreeIcon="true" textField="unitName" idField="id" parentField="parentId" resultAsTree="false" expandOnNodeClick="true"
- contextMenu="#tree1Menu" expandOnLoad="true" onkeydown="keyDown"
- onendedit="onEndedit" onnodedblclick="treedblclick" ><!-- onnodeselect="onnodeselect" ondrop="drop" allowLeafDropIn="true" allowDrag="true" allowDrop="true"-->
- </ul>
- </div>
- <div class="mini-toolbar" id="foot" style="padding:2px;border:0px;text-align:center;margin-bottom:0px;position:relative;">
- <a class="mini-button" onclick="confirm" style="width:80px;margin-right:60px;">确定</a>
- <a class="mini-button" onclick="cancel" style="width:80px;">取消</a>
- </div>
- </form>
- <script type="text/javascript">
- mini.parse();
- var tree=mini.get("tree1");
- var result=0;
-
- $(document).ready(function(){
- var node=tree.getRootNode().children[0];
- tree.selectNode(node);
- $("#foot").hide();
- });
- function onBeforeOpen(e){
- if(result==0){
- var menu=e.sender;
- var node=tree.getSelectedNode();
- if(!node){
- e.cancel=true;
- return;
- }
- }
- function confirm(){
-
- }
-
- function cancel(){
- window.CloseOwnerWindow("close");
- }
-
- function show(){
- debugger;
- $("#foot").show();
- result=1;
- }
- </script>
- </body>
- </html>
复制代码- 我在另一个页面调用这个jsp,是弹弹窗显示的;但是这个弹出的也面出现了两个滚动条
- 调用代码如下:
- //显示单位信息
- function showUnitInfo(){
- mini.open({
- url : CTX_PATH+"/unitInfo/index.do",
- title : '选择部门信息',
- width : '400',
- height : '450',
- align : 'top',
- onload : function(){
- var iframe=this.getIFrameEl();
- iframe.contentWindow.show();
- },
- ondestroy : function(data){
- data=mini.clone(data);
- if(data.action=="confirm"){
- var param=data.d;
- mini.get("applicationDivision").setText(param.unitName);
- mini.get("applicationDivision").setValue(param.id);
- }
- }
- });
- }
复制代码
|
|