Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
735
XamGrid combobox
posted

Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4

Hi,

 

We are adding row in xamgrid by following code :

 

<ig:XamGrid.AddNewRowSettings>

               <ig:AddNewRowSettings

                  AllowAddNewRow="Top" />

            </ig:XamGrid.AddNewRowSettings>

            <ig:XamGrid.EditingSettings>

               <ig:EditingSettings

                  AllowEditing="Row" />

            </ig:XamGrid.EditingSettings>

 

When one column of xamgrid have combobox, then as mentioned in infragistics  I am referring as below to bind combobox:

 

<UserControl.Resources>

      <local:CategoryProvider x:Key="categoryProvider" />

      <local:CategoryConverter x:Key="categoryConverter" />

</UserControl.Resources>

 

Question : When  more than one column have combobox, then how to implement this . Is it any generic way to implement this or we have to make provider class for every combo.