Height BUG not fixed after adding items. (v20.1.0.59)

When using a ListBox control and the ShowSelectAll property is set to true, after items are added, the height is not properly adjusted.

I had to target it directly using the following css.

::deep .e-list-parent {
height: 90% !important;
}

This is not desired though as there may be several of them used and some without the Select All showing.

[image] https://1drv.ms/u/s!Aly2tBjDTFD-i5hwNIUXHe862wQoSQ?e=jSW7cJ



2 Replies

YA YuvanShankar Arunagiri Syncfusion Team June 14, 2022 11:59 AM UTC

Hi Jeff,


We have validated your reported query and it is known issue in our end. We will resolve this issue in our volume 2 release, which was schedule on the end of the June 2022. We appreciate your patience until then. Please refer the below CSS style to resolve this issue temporary.


.e-listbox-container .e-selectall-parent + .e-list-parent {

    height: calc(100% - 36px);

  }

 

  .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {

    height: calc(100% - 79px);

  }

 

  .e-listbox-container.e-filter-list .e-list-parent {

    height: calc(100% - 43px);

  }


Could you please check the above code and get back to us, if you need any further assistance on this. 


Regards,

YuvanShankar A



YA YuvanShankar Arunagiri Syncfusion Team September 22, 2022 07:17 AM UTC

Hi Jeff,


We regret for the inconvenience and please update your Syncfusion packages to latest version (above 20.2). we have fixed your reported issue in volume 2 version series of Syncfusion packages.

Please let us know if you have any concerns.


Regards,

YuvanShankar A


Loader.
Up arrow icon