按钮弹出窗口js代码
var a=_g().getWidgetByName("控件名1").getValue();
var b=_g().getWidgetByName("控件名2").getValue();
var url="/webroot/decision/view/report?viewlet=GettingStarted.cpt&op=write&a="+a+"&b="+b;
//或者这个格式 var url="${servletURL}?viewlet=GettingStarted.cpt&op=write&a="+a+"&b="+b;
var url = FR.cjkEncode(url);
//窗体
var $iframe = $("
//将窗体的src属性设置为模板路径
$iframe.attr("src", url);
//窗体的属性
var o = {
title: "对话框", //标题
width: 680, //宽度,可以换成w/2,自适应
height: 640, //高度
//closable:true, //是否显示关闭按钮,默认true
//confirm:true, //是否添加确认取消按钮,默认false
//draggable:true //是否可拖动,默认true
};
//弹出窗体
FR.showDialog(o.title, o.width, o.height, $iframe, o);
==================
10版本隐藏窗口标题
$(".fr-core-window-header").css("display", "none");//隐藏窗口标题栏
$(".fr-core-window-body").css("top", "0px");//设置高度
==================
11版本隐藏窗口标题
$(".bi-h-tape.bi-message-title.bi-header-background").css("display", "none");//隐藏窗口标题栏
$(".bi-abs").css("top", "0px");//设置高度
======
关闭按钮,直接自己放一个按钮,js关闭就可以
window.parent.FR.closeDialog(); //确定获取值后,关闭取消父窗口的对话框window.parent.FR.destroyDialog();