Announcement

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

    How to export data to CSV without quote

    I'm using smartGWT 5.0p version.
    I use the example from showcase to export data in CSV file.
    Is any way to remove quotes from exported CSV?
    My CSV export looks like:
    "ID","NAME","LASTNAME","AGE"
    "1","name1","lastname1","31"
    "2","name2","lastname2","35"

    but I want to look like:
    ID,NAME,LASTNAME,AGE
    1,name1,lastname1,31
    2,name2,lastname2,35

    #2
    Hi mariusc,

    I understand your need to configure separators/delimiters (tab, comma, space, etc) and text-identifiers (double quotes, single quotes etc).

    But what are you going to do once you get a comma in the data itself?

    Best regards
    Blama

    Comment


      #3
      Data will not contain comma, and this is the request from customer, they import files in other system that need CSV file in format without quote

      Comment


        #4
        I have the same problem.

        How can I configure separators/delimiters (tab, comma, space) and text-identifiers (double quotes, single quotes, none)?

        Comment

        Working...
        X