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)
Hi boriska11,
Thank you for your feedback. In order to pass multiple parameters to a converter, you can create an array of objects and pass this array as a parameter. For more information you can have a look at the following forum:
http://blogs.infragistics.com/forums/p/26254/97591.aspx
If you have any other concerns on that matter, please do not hesitate to ask.
Sincerely,EkaterinaDeveloper Support EngineerInfragistics Inc.www.infragistics.com/support
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