Browse By Tags

  • Any way to use databinding for the source of the FieldLayout?

    So I know that I can put multiple fieldlayout nodes in my XAML and then, programmatically, change which one is used in the AssigningFieldLayoutToItem event.  But what I'd like to do is something a little more databinding-y. 

    Is there any way that…

  • XamDataGrid 101, Part 1 - Blend-Savvy Overview

    The premier control of the WPF NetAdvantage suite is definitely the XamDataGrid. The Infragistics data grid trumps all similar type of controls everywhere. Not only do I get paid to say that, but as a user of our controls I have found the XamDataGrid…
  • 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…

  • Using Template for DataGrid Cell

    Can anybody help me?? I'm kind of new at this...

     I have created a template to allow entry into a textbox for a column in my DataGrid (I've included the XAML below.)  Everything works fine when I change the Note column in an existing Row.  The pr…

  • Combobox in XamDataGrid - Programmatically

    Hello,
    I’m new to WPF so what I’m asking may be simple it’s just that I’m inexperienced and may not know what I need to do.
     
    Basically, I have a XamDataGrid control that is used to edit a collection of business/domain objects.  The object being edited…