I have read other posts and tried what was suggested. I get an exception "Cannot resolve Targetname" which I assume is the Storyboard.Targetname="ActiveSelected".
Not sure what I am doing wrong. I have a simple sample.
Hello,
The development issue with ID of 94699 has been fixed and it is available in the latest Service Release. You can download the Service Release by logging in our web site and then going to My Keys and Downloads page.
Thank you for using Infragistics Components.
Sincerely,
Krasimir
Developer Support Engineer
Infragistics
www.infragistics.com/support
I have been looking into your post and it seems that this is an issue caused by setting the AllowConditionalFormatting to true. I have logged this behavior with our developers in our tracking system, with an issue ID of 94699. I have also created a support ticket on your behalf with number CAS-75754-6X0F34 in order to link the development issue to it so that you are automatically updated when a Service Release containing your fix is available for download.
Krasimir was able to help me with the selected row appearance. I have added to that a combo box in the row that does not get the selected appearance and while I have tried many things like TemplateBinding. Background I have not been able to get the same style for the combo box.
It will not allow me to attach my sample app but the sample I sent previously can be used and here is how I have the combobox defines for the row column.
<ig:TemplateColumn Key="DepartmentCode" HeaderText="Dept Code" IsReadOnly="False" Visibility="Visible" >
<ig:TemplateColumn.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding DepartmentCode}" />
</DataTemplate>
</ig:TemplateColumn.ItemTemplate>
<!--Set editor for template column -->
<ig:TemplateColumn.EditorTemplate>
<!-- <ComboBox BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}"> -->
<ComboBox >
<ComboBox.ItemTemplate>
<TextBlock Text="{Binding DepartmentCode, Mode=TwoWay, ValidatesOnExceptions=True, NotifyOnValidationError=True, UpdateSourceTrigger=Explicit}" />
</ComboBox.ItemTemplate>
</ComboBox>
</ig:TemplateColumn.EditorTemplate>
</ig:TemplateColumn>
Again, thank you for your help it is why I use Infragistics controls.
Bob
I have a combo box on the row that now has the "selected" appearance. The combo box does not have the "selected" appeaerance. This is the only other editor I have on the row beside the text box and I wonder if other editors may have the same issue when I use them. Again I supplied a simple example based on the example I sent before. Thank you for your help.
Thanks I guess I did not understand I had to define the "ActiveSelected" border style. It makes sense now thank you for the help.