kendo-react icon indicating copy to clipboard operation
kendo-react copied to clipboard

Empty space when filtering combobox with virtualization

Open Sivem4 opened this issue 3 years ago • 3 comments

I'm submitting a...

  • Bug report

Current behavior

image

Expected behavior

image

Minimal reproduction of the problem with instructions

To reproduce this issue simply try to filter list by a name on demo Filtering with Remote Data and Virtualization For example: maria

What is the motivation or use case for changing the behavior?

Empty space is reducing grid rows visibility. Fixing this would have aesthetic value as well.

Environment

Package versions:


Browser:

  • Chrome (desktop) version 101.0.4951.67 (64-bit)
  • Firefox version 100.0.2 (64 bit)
  • Edge version 101.0.1210.53 (64-bit)

System:

  • TypeScript version: 4.6.4
  • Platform: Windows

Sivem4 avatar May 23 '22 09:05 Sivem4

Could be resolved using the following CSS:

.k-height-container {
    position: absolute;
}

nstoychev avatar May 23 '22 10:05 nstoychev

Hi, I used your solution, however it changed the behavior of scroll as shown below. Can you help with that ? Thanks in advance. weird_scroll

Sivem4 avatar May 30 '22 13:05 Sivem4

@Sivem4 - Here is another solution, which works this time: https://stackblitz.com/edit/react-jq6vox?file=index.html,app%2Fmain.jsx

.k-virtual-content .k-list-ul {
    float: left;
    width: 100%;
}

nstoychev avatar May 31 '22 11:05 nstoychev

Reported in Ticket ID: 1621975

WissamProgress avatar Sep 01 '23 06:09 WissamProgress

Workaround with the latest version:

            <style>
                .k-list-content .k-list-ul {
                    float: left;
                    width: 100%;
                }

kdikov82 avatar Sep 11 '23 05:09 kdikov82

The fix is available in the latest dev version of the package and will be available in an official release version on 15th May

elena-gancheva avatar May 08 '24 14:05 elena-gancheva