ComboBox in Telerik.UI.Xaml.Controls.Grid.RadDataGrid -
windows 8 visual studio 2012 express
simple xaml:
<telerik:raddatagrid itemssource="{binding productssource}" autogeneratecolumns="false"> <telerik:raddatagrid.columns> <telerik:datagridtemplatecolumn header="whatever"> <telerik:datagridtemplatecolumn.cellcontenttemplate> <datatemplate> <combobox> <comboboxitem>one</comboboxitem> <comboboxitem>two</comboboxitem> <comboboxitem>three</comboboxitem> </combobox> </datatemplate> </telerik:datagridtemplatecolumn.cellcontenttemplate> </telerik:datagridtemplatecolumn> </telerik:raddatagrid.columns> </telerik:raddatagrid>
the binding source there populate grid something. in real app use it. problem: whenever select item combobox not remain selected, items appear(dropdown), selection works, combobox displays nothing. out of grid combobox works ok. new @ , definetely missing something.
yes, due fact combobox not update visualstate right after selectionchanged event raised, because there animation in between.
best regards, ivaylo
Comments
Post a Comment