Idea

jing.c avatar image
3 Likes"
jing.c suggested Frenk Gao commented

Chinese characters show error in Performance Measure Results

Chinese characters show error in Performance Measure Results.

This bug had been existed a long time. And hope it will modified in next release.

experimenterbug reportchinese character
pic.png (14.6 KiB)
· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Phil BoBo avatar image Phil BoBo ♦♦ commented ·

Yes, this is a bug. I've added a case to the dev list to fix this. Thanks.

1 Like 1 ·

1 Comment

·
Frenk Gao avatar image
2 Likes"
Frenk Gao commented

You can try to run this code.

Add support to GBK.

experimentergbk.txt

//FlexSim
treenode foo=node("VIEW:/standardviews/statistics/PerformanceMeasures/tabcontrol/Performance Measures/GraphPanel/HtmlGraph>eventfunctions/coldlinkx");
string str=getnodestr(foo);
string newStr=stringreplace(str,
	"\"<html>\\r\\n<head><title>Performance Measure</title>\\r\\n\"",
	"\"<html>\\r\\n<head><title>Performance Measure</title>\\r\\n<meta charset=\\\"GBK\\\">\"");
setnodestr(foo,newStr);
buildnodeflexscript(foo);
//Outside 1
foo=node("VIEW:/standardviews/statistics/PerformanceMeasures>eventfunctions/generatereport");
str=getnodestr(foo);
newStr=stringreplace(str,
	"\"	<title>Experimentation Report</title>\\n\"",
	"\"	<title>Experimentation Report</title>\\n<meta charset=\\\"GBK\\\">\"");
setnodestr(foo,newStr);
buildnodeflexscript(foo);
//Outside 2
foo=node("VIEW:/standardviews/statistics/PerformanceMeasures>eventfunctions/generateviewer");
str=getnodestr(foo);
newStr=stringreplace(str,
	"\"	<title>Experimentation Report</title>\\r\\n\"",
	"\"	<title>Experimentation Report</title>\\n<meta charset=\\\"GBK\\\">\"");
setnodestr(foo,newStr);
buildnodeflexscript(foo);
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Write a Comment

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Your Opinion Counts

Share your great idea, or help out by voting for other people's ideas.