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
ValueList: showing error while upgrading UltraWebGrid to WebDataGrid.......
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 322 The type or namespace name 'ValueList' could not be found (are you missing a using directive or an assembly reference?)

Below error is there while fixing the code:

if (ds.Tables.Count > 2)
   {
   foreach (DataTable dt in ds.Tables)
     {
      if (uGrid.Bands[0].Columns.FromKey(dt.TableName) != null)
       {
        ValueList lstTable = uGrid.Bands[0].Columns.FromKey(dt.TableName).ValueList;
         lstTable.DataSource = dt.DefaultView;
         lstTable.DataMember = dt.TableName;

Parents Reply Children
No Data