首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

扩充easyui.window

2012-11-23 
扩展easyui.windowfunction doEdit(){ vseaf.open({ id: edit, title: 编辑初始化值, width: 800, hei

扩展easyui.window

function doEdit(){ vseaf.open({ id: 'edit', title: '编辑初始化值', width: 800, height: 500, content: 'url:edit.jsp', onLoad: function(dialog){ if(this.content && this.content.doInit){//判断弹出窗体iframe中的doInit方法是否存在 this.content.doInit(dialog);//调用并将参数传入,此处当然也可以传入其他内容 } }, toolbar: [{ text: '保存', iconCls: 'icon-save', handler: 'doSave' //调用弹出窗体iframe中的doSave方法 },'-',{ text: '关闭', iconCls: 'icon-cancel', handler: function(dialog){ dialog.close(); } }] }); }


热点排行