Browse By Tags

  • What's New for WPF in Ultimate 16.2

    We’re pleased to announce the release of Infragistics Ultimate 16.2, featuring great additions like our Royal Dark Theme and our xamCategoryChart. We’ve also made improvements to our xamDataGrid, xamPropertyGrid, xam Calander and our charts. All of these…

  • Hiding pivot areas in XamPivotGrid using XAML

    Hello

    I've found a post that deals with hiding pivot grid areas in code:

    https://www.infragistics.com/community/forums/f/retired-products-and-controls/53751/can-i-hide-pivotgrid-areas

     xamPivotGrid.RowsDropControl.Visibility = Visibility.Collapsed;
     
  • How to Display and force user to enter only HH:MM in SL control XAML from Timespan in Edit and in view mode

    Hi.

    i tried to use both Maked input and date input, no success
    i do binding to Timespan, at the moment i can display this value as: hh:mm:ss and in edit mode the same.

    all i want to do is to show in view mode and also in edit mode like this: hh:mm (without…

  • Ignite Grids – Performance Tips and Tricks

    In this blog post, I would like to briefly outline some basic guidelines that can help you dramatically increase the page load speed and decrease the rendering time for the Ignite Grid components. We already have a performance guide which is part of our…

  • Navigation in the modern web. In-page navigation and state management with Ignite UI.

    After reading this blog, you will be able to integrate the Ignite UI igGrid control with history.js, a popular library for browser history manipulation and navigation. This will allow you to navigate through igGrid states and to directly access a certain…

  • Re: RequireEmptyConstructorException

    Hi, 

    I'm facing the same issue and can't able to resolve it.

    I'm assign ObservableCollection<Class1>(records) to xamgrid.itemsource.

    Class1 constructor contains 3 more classes IEnumerable<class2/3/4> in parameter and last argument is…

  • 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…
  • XamGrid How to make a cell not editable and activate only

    Hi,

    I am having a XamGrid having three columns. First and Second columns are double values and third column is the sum of first two columns.

    Third column is auto calculated and set to IsEnabled = FALSE. Also all the three columns having format set to…

  • How to get the Key of the selected column using MVVM style

    Hi,

    I have 2 data grids and have a situation where a user can right click on a column that brings up a menu item that allows the user to "Sent to other grid column" option where the selected column values need to be copied across to the same column on…

  • Re: XamGrid V2012.1 paste as new rows into grid from Excel

    Thanks Yanko,

    But isint this completely out of the MVVM way of doing things, so if i paste a huge row with N columns, i have to loop thro and set every property, the code review guys are not going to approve this way of using the codebehind, is there…

  • Xamgrid filter menu item list when Group by rows

    Hi,

    I have a xamgrid that display data grouped by a column, am using the FilterMenuSelectionListGeneration="CompleteList" option, but still when i click on the Filter menu on the first group, only the items in that group are listed, items from the second…

  • Filtering on template column

    Hi,

    I am having a problem with the display of the filter menu items on some of our columns.  The situation is we have some template columns which contain dropdowns.  The key for the column is the identity field and we bind the dropdown display to a descriptive…

  • XamGrid filter displays underlying value instead of the display text

    Hi !!!

    I'm experiencing some difficulty to implement one important feature.

    I have column that uses value converter to display a meaningful text instead of some magic number.

    In this column i also use filter to filter those values. What i need to do is…

  • Creating Property Grid

    Hi,

     My requirement is that i have to show a property grid (like the VS Property box) to my users, is there a direct property grid available for Silverlight, or is there a way to show the Column Header on Right.

     

    -Abhi

  • Localize XamGrid at runtime

    Hello.

    I've developed my own ResourceManager for my silverlight project. Now I want to use the XamGrid localized and I don't know how can I do. Is there any way I can give the grid an xml with the resources? If not, at least setting prompt by prompt…

  • Re: XamGrid Persistence Settings

    Hi,

    I am trying to use the same with XamDataGrid and getting the error "An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll" during Load.

    Is there a service pack available for WPF control? I am using…

  • Re: How to get the Key of the selected column using MVVM style

    I have attached the menu items this way using xaml, so how do i get the actual column key thats been clicked on?

     <ig:ContextMenuService.Manager>
                    <!--If you use the Infragistics Commanding Framework, you should set the OpenMode property to None-->
                    <ig…
  • Infragistics xamGrid for Silverlight: How do I apply conditional formatting for cells in summary row?

    I have a TextColumn in xamGrid which has summary enabled. What i want to do is display the sum in red if it is negative. This is how the column is defined:

    <igGrid:TextColumn Key="Col1" HeaderText="Col1"
    ValueConverter="{StaticResource…

  • Can i have MergeCells and GroupByRow Grouping operation on different levels

    Hi,

    Am using the Xamgrid for Silverlight 12.01 version and would like to implement this kind of a Grouping.

    The first level of grouping on say Column - Level 1 would show the rows as MergedCells, and inside that section I would like to have another…

  • AccessViolationException - ImageColumn in xamGrid

    Hi,

    I have an SL app that displays dashboards using the XamTileView in combination with the XamDataChart and XamGrid. Since upgrading to Silverlight 5 the following issue now occurs:

    1. View a dashboard containing a XamGrid that includes an ImageColumn…
  • Poor Performance with xamGrid that has wide column set

    Hi Guys, Im trying to improve the performance of LOB silverlight app that uses the xamgrid to render the listings.

    We're find two performance hurdles:

    1. Rendering the grid to the UI takes approx 1 - 1.5 secs depending on screen resolution. This…

  • Filter Display when using FilteringScope.ColumnLayout

    Hi,

    Our customers raised an issue with us when exporting data from a grid into excel it was not taking the filter applied into account.  After reading through your documentation I found that I needed to set the FilteringScope to ColumnLayout for it to…

  • Drag&Drop XAMGrid Rows to a XAMSchedule Issue

    Hi,

    I'm trying to drag and drop some rows from a XAMGrid to a Schedule. And instead dragging a row it drags the entire grid.

    Can some please have a look on the sample. I looked all over the internet and I can't imagine what am I doing wrong.…

  • using xamGrid edit cells to enter data

    Hi, I have set up my xamGrid but cannot seem to even enter edit mode at this point.  I want to start off with an empty xamGrid, and have the user fill in the data, then save it to a database.  Here is xaml,

    <ig:XamGrid HorizontalAlignment="Left" AutoGenerateColumns…