• Resolved cymindis

    (@cymindis)


    Hello Tobias,

    working with your Plugin is great.
    I created several tables and found a lot of solutions to custom changes in this forum.
    Still a few questions are left:
    1) my tables are in german and whenever I export them I get Umlaut-problems in the resulting csv. Is there any solution to this?
    2) is it possible to give the header round corners (all 4 corners)? In my tables the header row has got a background, but the rest of the table has got a transparent background and you see the page background image
    3) I made the header cell arrows for sorting vanish by using

    .dataTables_wrapper .tablepress .sorting:after,
    .dataTables_wrapper .tablepress .sorting_asc:after,
    .dataTables_wrapper .tablepress .sorting_desc:after {
    content: “”;
    }

    Now I am trying out the DataTables FixedHeader-Plugin and while scrolling down the arrows appear in the fixed header. I would like them to stay hidden. Is there an easy way to solve the problem?

    Thanks a lot for your always quick and very helpful replys, Gaby

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi Gaby,

    thanks for your post, and sorry for the trouble.

    1) This usually means that your site is somehow not using the UTF-8 character encoding everywhere. Where are you then seeing the Umlaut problems? Are the Umlauts shown correctly in a text editor when opening the CSV file there?

    2) Yes, that should be possible with some CSS code as well, e.g. https://ww.wp.xz.cn/support/topic/can-tablepress-do-this/

    3) For this, the CSS

    .tablepress .sorting,
    .tablepress .sorting_asc,
    .tablepress .sorting_desc {
      display: none;
    }
    

    should be sufficient and work better.

    Regards,
    Tobias

    Thread Starter cymindis

    (@cymindis)

    Hi Tobias,

    sorry for the delay.

    ad 1) the Umlaut-problem appears in the name of the exported .csv (tabel “Führungen” becomes F++hrungen.csv) and it also exists when I open the .csv in a text editor.

    ad 2) that worked! Sorry that I didn’t find that thread without bothering you (resolved)

    ad 3) With this piece of code the whole table header vanishes…

    Gaby

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    1) That’s strange. Then something on your server or local computer is breaking the UTF-8 character encoding 🙁

    2) Great!

    3) Ah, my bad, there’s small mistake, please try again with

    .tablepress .sorting:after,
    .tablepress .sorting_asc:after,
    .tablepress .sorting_desc:after {
      display: none;
    }
    

    Regards,
    Tobias

    Thread Starter cymindis

    (@cymindis)

    ad 1) If I find out the problem, I’ll let you know.

    ad 3) works! (resolved)

    Thank you so much and I rated tablepress and your support with as many stars as possible long ago 🙂
    Have a nice day, Gaby

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! 🙂 Good to hear that this helped!

    Best wishes,
    Tobias

    Thread Starter cymindis

    (@cymindis)

    resolved

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    thanks!

    Best wishes,
    Tobias

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Table export Umlaut-problem’ is closed to new replies.