S.NO |
Query |
Response |
1. |
I mentioned images because it was the output from the loading that revealed that the items in the combobox were being added/removed while scrolling. I've modified the example to show how the width of the dropdown list shrinks and grows. It would be a better user experience if the width remained the same while scrolling.
|
We have checked the reported issue with provided sample and we able to observe the shrinking and growing up behavior with comboboxadv. We have forwarded this query to development team to analyze the exact cause We will check and update you the details by 27th Aug, 2020. |
2. |
Can you change the aligmnent of the checkbox in a multiselect combobox? We center the text and the image, so it looks weird when the checkbox is at top. With other themes, such as Metro and Blend, the checkbox isn't even aligned to the top but instead scaled vertically, which looks extremely strange. |
Could you please share the screenshot of your requirement. Also let you know your currently using visual style, so that we can check and proceed on this |
S |
Also, when having many items, using a select all feature freezes the interface for a long time (a second or more). Is there any way of speeding that up? I've added a "Select all" button to your example. We've tried with adding a separate template for the items in the selection box without images (SelectionBoxTemplate), but that didn't make much of a difference. |
We were able to reproduce the reported issue with ComboBoxAdv and we have forwared the query to development team to analyze the exact cause. We will check and update you the details by 27th Aug, 2020. |
S.NO |
Query |
Response | |
1. |
I mentioned images because it was the output from the loading that revealed that the items in the combobox were being added/removed while scrolling. I've modified the example to show how the width of the dropdown list shrinks and grows. It would be a better user experience if the width remained the same while scrolling.
|
We have confirmed the reported issue is a defect and logged a bug report on this. You can track the status of this bug using the following link:
We will update patch timeline by tomorrow. | |
2. |
I've attached screenshots showing the alignment problem using the default skin and metro. Using the default skin, the checkbox is always at the top. With other skins (atleast the ones we've tested) the checkbox is stretched. Being able to control the vertical alignment would be awesome :) |
Yes, you can able to handle the vertical alignment of CheckBox by overriding the template of ComboBoxItemAdv and change the vertical alignment of name Part_CheckBox. We have prepared a sample for the same and it can be downloaded from following location:
Code: [XAML]
Similarly you can try with the Metro style and for other styles.
Metrostyle xaml file: https://www.syncfusion.com/downloads/support/forum/157081/ze/MetroStyle396324414
| |
3 |
Also, when having many items, using a select all feature freezes the interface for a long time (a second or more). Is there any way of speeding that up? I've added a "Select all" button to your example. We've tried with adding a separate template for the items in the selection box without images (SelectionBoxTemplate), but that didn't make much of a difference. |
We have confirmed the reported behavior as an enhancement .We have considered in Volume 4, 2020.
|
Recommended approach - exe will perform automatic configuration.
Please find the patch setup from below location:
Patch link : Please find the patch assemblies alone from below location:
Assemblies Link:
Nuget link:
|
<syncfusion:ComboBoxAdv x:Name="comboBoxAdv" AllowMultiSelect="True" VirtualizingPanel.IsVirtualizing="False" VerticalAlignment="Top" Height="32" HorizontalAlignment="Center" Width="200" ItemsSource="{Binding PopulationDetails}">
<syncfusion:ComboBoxAdv.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" VerticalAlignment="Center">
<Image Source="0205_WebInsertHyperlink_32.png" Height="32"/>
<TextBlock Text="{Binding Country}"/>
<TextBlock Text="{Binding Continent}"/>
</StackPanel>
</DataTemplate>
</syncfusion:ComboBoxAdv.ItemTemplate>
</syncfusion:ComboBoxAdv>
|
Recommended approach - exe will perform automatic configuration.
Please find the patch setup from below location:
Patch link : Please find the patch assemblies alone from below location:
Assemblies Link: http://syncfusion.com/Installs/support/patch/18.1.0.42/1242682/F157081/SyncfusionPatch_18.1.0.42_1242682_9242020085645262_F157081.zip
Nuget link:
|