Hello.
I have a RadGridView control which is binded to ObservableCollection<DATA>. DATA has a lot of properties, including DEP_LINK
RadGridView has a Combobox column, which is binded to DEP_LINK property:
Combobox Items Source is ObservableCollection<DEPARTMENT>. DEPARTMENT has LINK, TITLE and ISUSED properties.
Now I want to color this cell Red if ISUSED == 0. Any thoughts how can I achieve this?
Thank you!
I have a RadGridView control which is binded to ObservableCollection<DATA>. DATA has a lot of properties, including DEP_LINK
RadGridView has a Combobox column, which is binded to DEP_LINK property:
<telerik:GridViewComboBoxColumn Header="Department" DataMemberBinding="{Binding DEP_LINK}"
ItemsSource="{Binding Departments}" SelectedValueMemberPath="LINK"
DisplayMemberPath="TITLE"></telerik:GridViewComboBoxColumn> Now I want to color this cell Red if ISUSED == 0. Any thoughts how can I achieve this?
Thank you!