sebfz1 / wicket-jquery-ui

jQuery UI & Kendo UI integration in Wicket
http://www.7thweb.net/wicket-jquery-ui/
Other
92 stars 58 forks source link

Ellipsis near checkboxes in DataTable #330

Closed pekour closed 3 years ago

pekour commented 3 years ago

In Chrome there are little ellipsis near checkboxes in CheckboxColumn, sometimes disappearing when window is resized. Wicket Kendo UI 8.11.0 Kendo UI v2021.1.224 The following piece of CSS helped me, but probably you can find better solution.

td, th {
    text-overflow: clip !important;
}

image

sebfz1 commented 3 years ago

I could not reproduce the issue using Chromium, so it is hard to find the appropriate settings to update

image

I think you can easily make the ellipsis disappearing by using the CheckboxColumn ctor that takes the column width as argument.

columns.add(new CheckboxColumn(42)); // default is 40

I'm closing the issue, feel free to reopen if it the above does not solve it.