Browse By Tags

  • WPF Binding to parent object in an XamDataGrid not on an Field

    Following on from this question I have another.

    I have inherited a legacy project that uses WPF. We make use of Infragistics. Below is a made-up class structure:

    public class DogsVM
    {
        public string ViewName { get; set; } = "My Dogs";
        public…
  • XamMultiColumnComboEditor Converter Parameter

    Is there a way to pass the current data record to a converter within the XamMultiColumnComboEditor 

    What I am trying to accomplish is:

    Dataset contains "Name", "Id", "Status"

    I only want to display "Name" and "Id" fields,…

  • Binding numeric value into subtitle

    Hello,

    is there a simple way to bind a numeric value to the subtitle ?

    Following scenario:

    I have multiple series and each one of them with with different underlying data depending on the selected item in the combo editor.

    So for each series there has…

  • XAMDataGrid ComboBoxField Converter Binding

    Hello - We are evaluating your product and have a question regarding binding converters.

    We have a ComboBox in our XamDataGrid.  It's ItemSource is an observable collection of id/value pairs.  The selected value of the ComboBox is bound to a property…

  • Introduction to Infragistics Geographic Map

    In the new NetAdvantage for Silverlight Data Visualization 11.2 Release you could have the advantage to use the outstanding  XamGeographicMap (CTP) component.  This is a new high-performance control predicted to work with a huge amount of spatial data. It…

  • Problems filtering on text columns whose bound values are not strings.

    The problem I am having is that if I have columns in the xamGrid that use converters to display their values, I have to actually type the value of the enum (or DateTime) in order to get the filter to work. Otherwise, the xamGrid filter just blanks out…

  • XamGrid not updating when underlying data changes

    Hi,

    We have a XamGrid (version 10.3.20103.1006) on a page that is bound to an Observable collection.  The data is hierarchical and so the grid has three ColumnLayout levels.  Some of the ColumnLayout columns are UnboundColumn types and use converters. 

  • Re: Alternating background style for the XamComboEditor

    Thanks Andrew!  This works totally great for all of my XamCombos now.  I have another post which builds on this one where I’m trying to achieve the same mouse over effect in the aero xamdatagrid for the XamCombo’s dropdown list in this post.…
  • ValueConverter: target type same as source type

    I have bound my XamGrid to an observable list objects.

    One of the rows is bound to a property of type integer (Int32).

    This is an account number, which I want to display formatted: so raw value is 987654321, display value  wanted: "98.76.54.321".…

  • xamdatagrid cell to be textbox or combobox depending on field value

    hi ,

    i have a xamdatagrid with fields 

    1.value (string : can be single or coma seperated multiple value) 2.  IsSingleValue(bool : related to value field ) .

    if IsSingleValue is true the cell has to be textbox else editable combobox( Items should be able…

  • How can i override the special filter operands "Blanks", "NonBlanks" ?

    hi,

    first: we use infragistics xamdatagrid 11.1.20111.2053

    our problem:

    We use the grid with generic lists. So it's very dynamic and must be prepared for any situation. We set for each field type theSortComparer, FilterComparer, the editor type, Edita…

  • xamDataGrid, Converter w/ culture

    I have a result set that has an Amount property and a Currency object w/ a Culture property.
    i.e.
    myItem.Amount                   (decimal)
    myItem.Currency.Culture   (contains the value en-US, or de-DE as a string)

    Each record's amount can be of a different culture.
    I already…

  • Re: Filtering on DateTime values when converter present

    Sure. Here it is. I created a simple data object with three properties name, created and modified. Let's say we receive the last column in UTC format and we want to display it in local time. In order to achieve this I have to apply a converter which does…

  • Color Cells

    Hi,

    I have a XamDataGrid with a few fields in it: ID, Name, Amount.  Amount has the value plus the change.  For example, Amount = "100 (-10)".  I want to color the -10 based on some other conditions.  I tried to pass html, <p>100 <span style="color…

  • How to display Int data in Dataset as String in grid

    Hi,

    I have a column in a datacontext which is an integer( 0,1)

    While displaying these in the Xamdatagrid, i want to display: 0 as "NO" & 1 as "Yes".

    Could somebody please guide me thru this?? Thanks!!

  • CellValuePresenterStyle not firing a converter?

    Currently, I have a XamDataGrid that has a button on the grid to popup an information window.  All that works fine, but there is a requirement to not show the button if there is no data.  I have a property to return a true/false to check to see if the data…