Hi
We are using XamComboEditor in some of our XmaDataGrid columns.
We would like to allow multiple selection while using the XamComboEditor (the selection is done using checkboxes(.
How can we do that?
we are going to save the data as string ( value1;value2;value3...)
how the binding works?
(i've read aboud a property called AllowMultipleSelection but i think it is available only for the web Silverlight control)
Hello,
I have sent your feature request directly to our product management team. Our product team chooses new feature requests for development based on popular feedback from our customer base. Infragistics continues to monitor application development for all of our products, so as trends appear in requested features, we can plan accordingly.
We value your input, and our philosophy is to enhance our toolset based on customer feedback. If your feature is chosen for development, you will be notified at that time. Your reference number for this feature request is FR14125.
If you would like to follow up on your feature request at a later point, you may contact Developer Support management via email. Please include the reference number of your feature request in the subject and body of your email message. You can reach Developer Support management through the following email address: dsmanager@infragistics.com
Thank you for your request.
No, it didn't work out for us. i spent alot of time investigating the matter.
as i wrote in the first thread :
Infragistics.Windows.Editors.XamComboEditor is native to XamDataGrid - (and could be set as an editor in A grid.the problem is that Infragistics.Windows.Editors.XamComboEditor don't have multiple selection and AutoComplete capabalities.
On the other hand
Infragistics.Controls.Editors.XamComboEditor has this capablities but it's very hard to set it as combo in XamDataGrid's cell according to our demands. i had a binding problem to SelectedItem property and the filterRow in XamDataGrid didn't show the display values of the comos- instead it showed the values behind the displayValues.
Anyways, We will appreciate it if you upgarde the Infragistics.Windows.Editors.XamComboEditor .
Thanks
I am just checking if you got this worked out or you still require any assistance or clarification on the matter.
If this is what you were looking for please verify the answer so it helps other users as well.
I have been following this thread and I assume that the array was just a suggestion. Usually you can set any instance as converter parameter, including your own class, that can have all the characteristics you need. This is why I can suggest creating your own ConverterParamter class of some sort that you can use instead of the xaml array.
Please let me know if you require using your own class did the trick.
Thanks again.
That won't do the trick.
The problem that the Xmal's array is quite static - you can't bind the array's element.
some columns in my dynamic XamDataGrid are XamComboEditors.
My ItemSource is a DataTable.
My SelectedItem is DataRow in a DataTable . This DataRow is Bind to a certain cell in the Grid.
So the twoway binding is : - XamDataGrid's cell <==> a DataTable's DataRow.
I need to pass to the converter 3 paremeters:
1. The Value of the XamDataGrid's cell .
2. The Column(Field) Name. - (binding is needed)
3. The DataContext of My Wpf Window that holds all Data.(binding is needed)
The coneverter should convert the Value of the XamDataGrid's cell to a DataRow which belongs to a datatable that exist in the DataContext. the DataContext knows which DataTable according to the The Column(Field) Name.
How can i do that?
The most reasonable option is ImultiValueConvereter