Finally I figured out a consistent way to duplciate it though only in my app. If I open one of the column filter dialogs and check/uncheck a few in a row really fast, usually by the third one it will crash. It doesn't matter how much data is in the grid. I cannot duplicate it in the demo site unfortunately. This is what the "Disassembly" looks like, I don't know what it means but it looks like the definition of a radComboBox which is in one of my grid columns:
--- STSilver\Main.xaml ---------------------------------------------------------
2076: Text="{Binding ClientName,Mode=TwoWay}"
nop
mov esp,ebp
pop ebp
ret 4
nop
2077: IsTextSearchEnabled="False"
2078: GotFocus="RadClientBox_GotFocus"
2079: SelectionChanged="radClientCombo_SelectionChanged"
2080: LostFocus="radClientCombo_LostFocus"
2081: ItemContainerStyle="{StaticResource CustomComboItem}"
2082: Style="{StaticResource RadComboBoxStyle}"
2083: Background="#00FF0000" AllowDrop="False"
2084: KeyUp="RadClientBox_KeyUp"
2085: Foreground="{Binding ClientName, Converter={StaticResource ForegroundConverter}}"
I don't know exactly what the above means but I guessed that the combo binding was an issue. I took out the binding, and then it crashed on another combo box. So I think it is related to the radcombobox binding.