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…