Skip to content

Latest commit

 

History

History
33 lines (18 loc) · 919 Bytes

帆软使用相关.md

File metadata and controls

33 lines (18 loc) · 919 Bytes

横向不分页:

URL 后增加 &bypagesize=false

数据库查询中的字符串与变量拼接 需要注意单引号

${ if(len(starttime)=0, " ", " and 订购日期>= ' " + starttime + " ' ")}

js打开对话框

var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>"); // iframe参数的命名及宽高等
$iframe.attr("src", "http://tongyue.sytech.ga:60000/webroot/decision/view/form?viewlet=Exception%252FServerLost.frm&ref_t=design&ref_c=c3f5a7e4-f6d0-4a75-af8a-854b04eaa230");

        //childtest.cpt为点击查询时,对话框中显示的子报表
var o = {

    title: "数据异常",

    width: 1200, //调整对话框宽度

    height:800 //调整对话框高度

};

FR.showDialog(o.title, o.width, o.height, $iframe, o); 

获取组件

this.options.form.getWidgetByName('report0').setVisible(false);