Can some one please show me the equivalent xaml for the XamComboEditor based on the MS ComboBox xaml below? The MS version works great. I'm new to WPF and am a bit lost in all the intricacies of data binding.
Thanks!
<igEditors:XamComboEditor Grid.Row="1" Grid.Column="1" Margin="2" ItemsSource="{Binding Facilities}" DisplayMemberPath="Name" />
<!-- <ComboBox Grid.Row="1" Grid.Column="1" Name="c1ComboBoxFacilityID" Margin="2" ItemsSource="{Binding Facilities}" DisplayMemberPath="Name" SelectedValue="{Binding CurrentBatch.FacilityID}" SelectedValuePath="FacilityID" /> -->
Hello Deepalakshmi,
For this forum thread post I created CAS-90417-P36MXL. You can access the case at the support activity page: https://ko.infragistics.com/Membership/MySupport.aspx.
Hi,
<ig:TemplateColumn Key="Part_number" HeaderText="Part No"> <ig:TemplateColumn.EditorTemplate> <DataTemplate> <igEditors:XamComboEditor IsEditable="False" Name="comboBox1" Height="23" Width="150"> <igEditors:XamComboEditor.ValueConstraint> <igEditors:ValueConstraint/> </igEditors:XamComboEditor.ValueConstraint> </igEditors:XamComboEditor> </DataTemplate> </ig:TemplateColumn.EditorTemplate> </ig:TemplateColumn>
how to bind the itemsource through xaml.cs page and also i cant access this comboeditor name.
can anyone answer me .
Fransis Sir,
Am waiting for ur reply can u give any solution. or how to overcome this prob? xamcomboeditor is this solution means how sir?
thanks
Hello Fransis Sir,
In my project i have xamgrid. 3 columns or cells in this grid . first cell i have combobox. in this combobox to select particular item means the remaining columns data ill fetch and assigned automatically if combobox is selectionchanged using tables . datas are fetch from sql table.my xaml are given below :
<ig:XamGrid HorizontalAlignment="Left" Margin="56,30,0,0" AutoGenerateColumns="False" CellEnteredEditMode="ManageRecipeStateGrid_CellEnteredEditMode " VerticalAlignment="Top" Height="212" Width="612" > <ig:XamGrid.Columns> <ig:ComboBoxColumn Key="Sub_Category_Code" DisplayMemberPath="Sub_Category_Code" x:Name="subcode" AllowEditingValidation="True" SelectedValuePath="Sub_Category_Code" HeaderText="subcategorycode "/> <ig:TextColumn Key="Sub_Category_Name_EN" HeaderText="SubCategory name En "/> <ig:TextColumn Key="Sub_Category_Name_AR" HeaderText="SubCategory name Ar"/> </ig:XamGrid.Columns> </ig:XamGrid>
i cant get comboboxselectionchanged event and combobox.selecteditem property.
pls can u solve my problem.
thank u so much sir.i ill try that codings.