- 注册时间
- 2012-3-31
- 最后登录
- 2019-4-2
- 阅读权限
- 150
- 积分
- 18852
- 精华
- 0
- 帖子
- 8776
|
本帖最后由 factory 于 2013-2-4 16:10 编辑
panxiaochao 发表于 2013-2-4 15:52
我用的就是type: "ux.iframewindow"!对了,有没有方法是对desktop桌面显示的那个modules里面的数据重新加 ... - mini.ux.IFrameWindow = function () {
- mini.ux.IFrameWindow.superclass.constructor.call(this);
- this.initControls();
- }
- mini.extend(mini.ux.IFrameWindow, mini.ux.Window, {
- title: "IFrame Window",
- url: "",
- initControls:function(){
- this.on("beforebuttonclick",function(e){
- if(e.button.name == "close"){
- var src = this.getIFrameEl().src;
- this.getIFrameEl().src= src;
- }
- })
- }
- });
- mini.regClass(mini.ux.IFrameWindow, "ux.iframewindow");
复制代码 你修改下IFrameWindow.js
当关闭的时候,把iframe的url重新给定一下,试试呢 |
|