Posted 11 February 2025, 4:27 pm EST - Updated 11 February 2025, 4:31 pm EST
HI,
We have a list of about 26,000 items that we are trying to map to a dropdown. This is very slow when the dropdown is clicked on (perfectly fine after initial load). I believe C1FlexGrid has virtualization enabled by default, but that does not seem to be working?
How do we enable that?
C1.Win.FelxGrid v6.0.20221.5
This is how the datamap is mapped-
public void SetFieldDataMap(C1FlexGrid p_flx, string p_sFieldName, IDictionary p_DataMap)
{
int nRowIndex = GetFieldRowEx(p_flx, p_sFieldName);
CellRange range = p_flx.GetCellRange(nRowIndex, p_flx.Cols[CommonGridColName.FieldValue].Index);
range.StyleNew.DataMap = p_DataMap;
}