cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Simplified Chinese characters can't display in igrid

Former Member
0 Likes
125

When i use igrid display template,it is can't display Simplified Chinese characters in igrid's column title,and it doesn't useful in use Localization Keys.

Can anybody help me please!

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Likes

Hi Heiyi,

You can use the following parameter setting in irpt file to display the Chinese characters in the iGrid heading:

<PARAM NAME = "ColumnHeadings" VALUE="编号, 姓名, 地址, 备注">

The comma splits the columns. The setting will overwrite the column names generated in the dataset.

If you want to use the localization, you can create localization variables (e.g. LocName, LocAddress) first and use the variable in an irpt file as below:

<PARAM NAME = "ColumnHeadings" VALUE="{##LocName}, {##LocAddress}">

Hope it helps.

Regards,

Kevin