HiCan you please help me with the below scenario?Right now the unboundfield label values are hard-coded but I want to bind the label text with the combo box selected value(year). Current hard coded Values:Label="2010 Annual Account Spend" Label="2011 Annual Account Spend" Label="2012 Annual Account Spend" Expected Value:I want to take the year selected in combo box and append it to"Annual Account Spend" text and display it in the column header. <igDP:UnboundField Name="PrevYearCustomerSpend" Label="2010 Annual Account Spend" BindingPath="PreviousYearServiceBudget.AnnualSpend" Visibility="Collapsed"> <igDP:UnboundField.Settings> <igDP:FieldSettings EditAsType="{x:Type sys:Decimal}" AllowEdit="False" EditorStyle="{StaticResource CurrencyEditorStyle}"> <igDP:FieldSettings.LabelPresenterStyle > <Style TargetType="{x:Type igDP:LabelPresenter}"> <Setter Property="ToolTip" Value="Annual account spend for a single mode/service. This is more than just the total spend with CHRW." /> </Style> </igDP:FieldSettings.LabelPresenterStyle> </igDP:FieldSettings> </igDP:UnboundField.Settings> </igDP:UnboundField>Thank you!
Hello,
I am just checking if you got this worked out or you still require any assistance or clarification on the matter.
I am looking to do the same thing as above except in the code behind. I'm having trouble with adding the datatemplate part in the code behind.
I also need to bind to a property in the viewmodel instead of elementname.
Thanks!