Unplanned
Last Updated: 30 Mar 2016 09:34 by ADMIN
ADMIN
Dimitar
Created on: 09 Nov 2015 12:15
Category: MultiColumnCombo
Type: Bug Report
0
FIX. RadMultiColumnComboBox - the bestFitAllRows parameter of the BestFitColumns method is not respected.
To reproduce:
- Add 200k rows and the call the BestFitColumns method like this (only the visual rows should be measured in this case):
this.radMultiColumnComboBox.BestFitColumns(true, false);

Workaround:
Set the AutoSizeDropDownColumnMode before calling the method:
this.radMultiColumnComboBox.MultiColumnComboBoxElement.AutoSizeDropDownColumnMode = BestFitColumnMode.DisplayedCells;
this.radMultiColumnComboBox.BestFitColumns(true, false);
0 comments