Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    exportClientData unique title only problem

    Hi,

    I use an export of a listGrid into excel by calling exportClientData.

    My listGrid has columns with unique name and they also have a title.
    In some languages the title translation of two columns have the same title.
    Code:
    new ListGridField(0, "XX");
    new ListGridField(1, "XX");
    In this case the grid is rendered correctly but the exported file does not contain the second column at all.
    It seems that the values are paired based in title rather than name.

    I use smartGWT 3.0 10-11-2011

    best regards,
    Zdary

    #2
    For export to work properly, you will need to have distinct field titles for all fields. This is better UI anyway, especially with the ability to reorder columns.

    Comment

    Working...
    X