Hello.
I use Combo Box with Large Database MVC extension.
But it does not set text value for stored data.
I set Value property on PreRender:
C#settings.PreRender = (s, e) =>
{
MVCxComboBox combo = (MVCxComboBox)s;
combo.Value = "KeyInNotFirstRange";
};
But text value does not set.
Sample Visual Sudio project in attachment.