Browse By Tags

  • HyperLinkColumn Click Event Code behind

    Hi Team,

    i have a small issue that i need to create the XamGrid column from code behind and catch the Hyperlink Click event.

    _grid.Columns.Add(new HyperlinkColumn
    {
    Key = columnKey,
    HeaderText = FormatColumnHeader(entry.Key),
    //FormatString = formatString…

  • XamGrid CellControl Behaviour

    Hi Guys,

    I would like to set CellControl Behaviour to handle enter edit mode. I should set Behaviour from styles because I use the same column in many places. But it can create only one instance of behavior and I get the next error:http://prntscr.com…

  • XamGrid GroupBy

     there a way to programmatically set a group by to a hidden column on a XamGrid?

    For example, I have the following columns (with values)

    Name, School, Grade , Subjects

    School is hidden column.

    Is there a way to group by School?

    Thanks,

    Erika

  • Changing Row Color Through Code

    I'm working on being able to sort rows in my grid by dragging and dropping them, and I'd like to be able to change the color of rows that I'm hovering over with the mouse so the user knows which row we're dropping the other one onto.

  • XamGrid - Drag & Drop to Reorder Rows

    Hi! I'm trying to add functionality to a XamGrid to reorder the rows by dragging one and inserting it above or below another row when releasing the mouse button. Are there any examples of how to accomplish this? I did some searching and couldn't find…

  • Hierarchical Data XamGrid, synchronize ChildRow Column Widths

    Hello,

    I tried to display hierarchical data in the xamgrid - all levels with the same type / columns - and I want to share the "outer headers" (and header-sizes) for all indentation levels.

    However - this seems to be impossible with the xamGrid…

  • Bind XamGrid Columns to Dictionary property of a custom object

    Hello,

    I have a custom object which has a dictionary as a property:

    public class MyObject

    {

    string Name {get;set;}

    Dictionary<Tuple<string, int, string>, decimal?> MyDictionary {get;set;}

    }

    I am setting my XamGrid's ItemSource to…

  • Sorting Issue with GroupColumn

    HI,

    In the XAMGrid, I am using the GroupColumn feature to group few columns under one header. Everything is working as expected, but I noticed a issue,
    when I change the sorting of data from the server side. Sorting details are as follows:

    1. On click…

  • Removing DatePicker from DateColumn

    Our xamwebgrid is set up to autogenerate columns as it binds dynamically to multiple datasets. When it generates columns of DateTime type it creates a DateColumn with the DatePicker. Our data is read only so we don't need the datepicker and we need the…

  • XAMGRID - UI performance issue

    Hi,


    I am looking for some guidance on debugging the UI performance issue of the XAMGRID.

    I have a grid which when populated with say 3000+ records, the UI performance of the Grid degrades. i.e. if I try to navigate through the cells using the UP/DOWN…

  • ToolTip for template column

    Hi,

     

    I am using the ToolTipContentTemplate to show the tooltip on one of the XAMGRID template column.The XAML snippet for the same is shown below:

    <Ig:TemplateColumn.ToolTipContentTemplate>

    <DataTemplate>

                  <StackPanel>

                         <TextBlock…

  • XamGrid set column background color dynamically based on data

    I am new to Silverlight and infragistics, we are in requirement to show background color of the column as red if the data is null for text column or Template columns but we don't know how to make the background color dynamically based on the cell value…

  • xamGrid Persistence Error "PersistenceGroup elements don't match elements in stream"

    I tried to save and load user settings to xamgrid using persistence framework 11.2

    XAML:

    <ig:XamGrid AutoGenerateColumns="False" ColumnLayoutHeaderVisibility="Never" Cursor="Hand" Height="680"   Name="dgQResult…

  • Changing the Column Width from code behind

    Hi,

    I have a requirement where I need to set the width of a column to "Auto". I am able to do this from XAML code but couldn't find a way to set it from code behind.

    Though, I am aware that to change the width I can use - column.Width…

  • XamGrid Persistence Issues

    Hello.

    I am encountering issues w/ Persistence in a hierarchical XamGrid.   I have attached a sample project that illustrates the problem.

    Steps to reproduce:

    1. Launch the sample project and note that the XamGrid rows are colored red/blue.

    2.…

  • xamgrid self reference data - only 1 header row

    hi,

    I have self reference data to display in XamGrid and like the example http://www.infragistics.com/samples/wpf/grid/self-referencing-data.

    How can remove the redundant header rows and keep just one top header row for whole xamgrid?

  • Xamgrid Issues

    In the attached image file, if i change/put value in column A (of Upper Xamgrid), Then cells A1 and A2 (in the lower xamgid) should become editable. How to achieve this ? is there any gridevent in the lower xamgrid that can make the cells A1 and A2 editable…
  • Select a FilterMenu item in code-behind

    Hello again,

     

    I'm attempting to set up a xamgrid where filters are requested before the page loads.

     

    I have tried the FilterCellValue field and that has worked great. However, when you open the Filter Menu at the top of the column, that filter…

  • Modify Xamgrid Date Column Default Icon

    How can you change or remove the default icon (little "15" calendar thing) in the xamgrid date column?

  • XamGrid Filtered Row Count

    We are dynamically updating the xamgrid itemsource with data then reducing visible record counts with multiple header filters.  How can you retrieve the count of filtered records (numbers used to generate the xamgrid paging)?  

  • copy/paste hierarchical data in XamGrid

    IS there any build in functionality to copy and paste hierarchical data in XamGrid.

    If not, is there any workaround to it.

  • xamgrid hierarchy children lazy load

    i have hierarchical xamgrid. The parent items load first but I want to load the children items when the parent expansion button is clicked and not on load.

    please help.

  • Column Header location with a grouped column

    Hi,

    The column headers are repeated for every grouped record in the grid when a group by column is present.  I would like to know if there is a way to only display the headers once, at the top of the grid (similar to behavior that I believe exists in…

  • Xamgrid DataCell Dynamic Visibilty

    Hi Team,

    I have an silverlight application in which i am using a xamgrid. 

    In the xam grid i am using two columns with the edit and delete buttons which are user specific. I am trying to enable them from code behind with the help of visibility converter…

  • Xam Grid Child pager settings

    Hi Team,

    I am working on the Xam Grid control. Xam grid Contains a custom pager with some styles.

    When a group by is done on the parent grid control. All the child grid controls formed as a result of group by is also inheriting the parent pager settings…