Author Topic: No continuation symbol in header with hwrap = false (version 3.3.0)  (Read 2364 times)

Bohuslav Stanek

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 14
    • View Profile
Hi,

I have a table with hwrap set to false, but there is no continuation symbol (...) shown in the header, when the text overflows. This seems to be a problem of ParamQuery version 3.3.0, it works as expected in 3.2.0.

To test it, follow these steps:
  • Go to ParamQuery Pro demos (http://paramquery.com/pro/demos)
  • Choose Rows -> Frozen rows.
  • Add hwrap: false to ParamQuery configuration.
  • Try to shrink any column. The column header is just truncated, there is no continuation symbol.

Thanks in advance.

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6263
    • View Profile
Re: No continuation symbol in header with hwrap = false (version 3.3.0)
« Reply #1 on: April 26, 2016, 08:43:44 pm »
Thanks for reporting the issue. Please add this css fix.

Code: [Select]
table.pq-grid-header-table div.pq-td-div{
display: block;
}

Bohuslav Stanek

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 14
    • View Profile
Re: No continuation symbol in header with hwrap = false (version 3.3.0)
« Reply #2 on: April 26, 2016, 11:08:18 pm »
Thank you, the fix is OK.