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
1620
Changing UltraWebGrid to Web
posted

I am converting Infragistics 2010 v2 CLR3.5 to Infragistics 2014 v2 using 4.5 CLR using Visual Studio 2013 Professional Update 4. I am getting following error while building the project. Please reply immediately..........

Error 325 'Infragistics.Web.UI.GridControls.GridField' does not contain a definition for 'CellStyle' and no extension method 'CellStyle' accepting a first argument of type 'Infragistics.Web.UI.GridControls.GridField' could be found (are you missing a using directive or an assembly reference?)

Below is the old code which I am trying to fix but above error is coming....

foreach (DataRow dr in ds.Tables[0].Rows)
               {
                   uGrid.DisplayLayout.Bands[0].Columns[colCount].Header.Caption = dr[1].ToString();
                   uGrid.Columns[colCount].CellStyle.BackColor = Color.LightGray;
                   colCount++;
               }
Parents
  • 1620
    posted

    The above I am trying to fix old code of UltraWebGrid to new WebDataGrid............

Reply Children