Browse By Tags

  • Another Hierachical Data and Field Layout / Binding question

    I have a Custom object that represents inventory items and looks similar to this:

     public class InvItem {

            public string ItemID {

                get;

                set;

            }

      public string UPC_SKU {

                get;

                set;

       }

       public string StockingUM {

                get;

                set;

       }

    public decimal Price {

                get;

                set;

     }

     public decimal Weight {

                g…

  • introduction to binding a database table in sql server to a read only xamDataGrid

    hey ,

    I am a complete noob , when it comes to using infragistics , and I am evaluating it for a project ,

    the project requires a lot of data from multiple data sources and I am looking for a guide for binding the data to a xamDataGrid , if somebody…