Hello,
I have a XamComboEditor whose ItemSource is bound to a list of KeyValuePairs. The DisplayMemberPath is bound to the value property, and the ValuePath is bound to the key. To give a specific example, there are two items in the list:
key=1 value="Debit"
key=-1 value="Credit"
What I want to do is programmatically set the value of the editor to 0 (i.e. not a valid value), have it display blank, and force the user to make a choice between the two valid selections. However, when I do this, the XamComboEditor displays "0". Am I missing something? Is there a way to get it to display blank in this case and give the user his two choices of Debit and Credit?
Thanks!
Bob
No, I suppose not. Thanks.
I am just checking if you require any further assistance on the matter.
Hi,
I have been looking into your post and you can change the ItemTemplate of the WPF specific XamComboEditor using the ‘ComboBoxStyle’ like e.g. :
<igEditors:XamComboEditor.ComboBoxStyle>
<Style TargetType="ComboBox">
<Setter Property="ItemTemplate">
<Setter.Value>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Make}" Width="50" />
<TextBlock Text="{Binding Model}" Width="100" />
</StackPanel>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
</igEditors:XamComboEditor.ComboBoxStyle>
Currently the WPF specific XamComboEditor does not provide a property like ‘EmptyText’ which is available in the XAML XamComboEditor.
After working on this and doing some research, the adding of ‘EmptyText’ property in the WPF XamComboEditor has been determined to be a new product idea. You can suggest new product ideas for future versions (or vote for existing ones) at <http://ideas.infragistics.com>.
There are many benefits to submitting an product idea:
- Direct communication with our product management team regarding your product idea.
- Notifications whenever new information regarding your idea becomes available.
- Ability to vote on your favorite product ideas to let us know which ones are the most important to you. You will have ten votes for this and can change which ideas you are voting for at any time.
- Allow you to shape the future of our products by requesting new controls and products altogether.
- You and other developers can discuss existing product ideas with members of our Product Management team.
Steps to create your idea:
The Product Idea site puts you in the driver’s seat and allows you to track the progress of your ideas at any time, see how many votes it got, read comments from other developers in the community, and see if someone from the product team has additional questions for you.
In the upcoming Infragistics WPF 14.1 the XAML XamComboEditor will provide a ‘SelectValue’ property which could be bound to a property from the ViewModel.
Let me know, if you need any further assistance on this matter.
Which brings me back to the problem that prompted me to post originally... I also need the "EmptyText" (and for that matter "ItemTemplate"), which are available only in the XAML control.
Thank you for your reply. I have been looking into your scenario and currently the best approach could be to use the WPF specific XamComboEditor because this way you have the ability to bind its ’Value’ property. I am attaching a sample application(ComboEditorKeyValuePairs_WPFEditor.zip) this this editor.
Let me know, if you need any further assistance on this.