26 评论

用户XKB8P3158665

导出指定时间范围呢,怎么做

0 2021-12-31 17:40

yzm224185

有办法实现制定列导出吗?

0 2021-08-05 11:42

RosieY

您好,可以尝试社区问答提问哦https://bbs.fanruan.com/wenda

0 2021-08-16 16:38

杨建川

步骤2.2,参数面版中添加按钮,js可以简化如下,可以不用传参

//遍历参数面板控件,获取对应的参数值。
let paramJson = {}
$.each(this.options.form.name_widgets, function (i, item) {
if (item.options.type !== 'label' && item.options.type !== 'button' && item.getName() != "PARA" && item.getName() != "SEARCH" && item.getName() != "EXPORT") {

paramJson[item.getName()] = item.getValue();
}
});
let paramJsons = $.extend({}, paramJson, {format: "excel", extype: "simple"});
var url = encodeURI('${servletURL}?viewlet=${reportName}');
FR.Msg.toast("表格下载中,请稍等");
FR.doHyperlinkByPost(url, paramJsons, "_self")

2 2021-06-09 16:03

Leo.Tsai

感谢

1 2021-10-21 15:11

yzc888

控件的颜色怎么变

0 2021-08-26 16:36

Leo.Tsai

不支持改变按钮颜色,但是可以自定义按钮图标来实现

0 2021-10-21 15:11

yzc888

控件的颜色怎么变

0 2021-08-26 16:36

Leo.Tsai

不支持改变按钮颜色,但是可以自定义按钮图标来实现

0 2021-10-21 15:11

yzm229845

太棒了,可以直接用!赞

0 2021-08-18 16:03

RosieY

点赞~

0 2021-08-16 16:42

勇敢的打工人

怎么设置导出Text文件的格式 gdk/utf-8

1 2021-05-11 17:13

勇敢的打工人

设置格式 utf-8 / ANSI / utf-16LE / utf-16BE

1 2021-05-12 13:44

yanghuiff

使用设计器自带的,本地Tomcat可以,远程Tomcat8服务下不行,会报错

Type Exception Report

Message Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986

Description The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).

0 2020-09-29 17:23

RosieY

您好,服务器端JS代码中去掉最后的转码函数FR.cjkEncode(url)试一试呢

0 2020-12-16 16:16