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
75
'Infragistics.Win.UltraWinGrid.UltraGridColumn' does not contain a definition for 'EditorComponent'
posted

Hi Team,

 Not able to use the .Net textbox (any controls ) inside the ultrawin grid cell and it says Editor component property not available

        private void ultraGrid_InitializeLayout(object sender, InitializeLayoutEventArgs e)

        {         

               Textbox text = new Textbox;

               e.Layout.Bands[0].Columns[3].EditorComponent = text;

        }

 

whlie run the application getting the below error.

 

 'Infragistics.Win.UltraWinGrid.UltraGridColumn' does not contain a definition for 'EditorComponent' and no extension method 'EditorComponent' accepting a first argument of type 'Infragistics.Win.UltraWinGrid.UltraGridColumn' could be found (are you missing a using directive or an assembly reference?)