Browse By Tags

  • Click on coulmn header, sort and select column

    Hi,
    In my grid, where user click con column header I want to manage both sorting and column selection.

    Column selection shoud be activate when user press Alt key and click on the column header. Otherwise only with header click grid should sort the column…

  • IComparer Sort Not Working on UltraWinGrid

    I have implemented an IComparer class to use on a column that can contain numbers or strings. I'm assigning the comparer in the constructor of the form that has the grid:

    grid.DisplayLayout.Bands[0].Columns["Number"].SortComparer = new InvoiceNumberSort…

  • Sorting in ultragrid string column.

    Hi all,

      I have ultragrid column named Rank, it has value range from 1-10 and default value as *. So we made the column datatype as string instead of numeric just to allow default value as "*". If the column has *,4,5,10. if we sort by ascending it display…

  • Display rows with empty cell at last

    Hi,

    I am facing an issue almost same as mentioned the below link.

    https://www.infragistics.com/community/forums/f/ultimate-ui-for-windows-forms/9549/sort-rows-move-rows-with-an-empty-value-to-the-end

    . I have added a temporary column (Sequence #) to the…

  • UltraWinGrid isn't sorting properly after saving layout and reloading

    We recently upgraded to version 17.2 and are now experiencing issues on our grids.  After you save the layout as XML and load it, our columns that are URLs and contain numbers are not sorting correctly.   They are sorting as if they are strings.  Is there…

  • UltraWinGrid and formula event timing

    Hi, I'm trying to perform a few operations on calculated columns in my UltraWinGrid, and they're not behaving quite as I'd hope.  What I'm trying to do is create a couple of columns that are derived from other, hidden columns, and then sort…

  • Incorrect sorting on UltraGrid

    Hi Sir, i am using your Infragistics Tools in my application. Whenever i applied sorting on any particular column on UltraGrid, it shows incorrect sorting result.

    Like in ascending order, values should be in this order: 50,100,250,(-)Hyphen,SPACE 

    But…

  • Sort by a different column

    Im trying to capture the header click event when a sort is activated and can't seem to find it. What I am trying to do is I have a datetime field, and I have a calculated field that shows how far in the past this event happened. so my datetime field has…

  • Natural sort order

    Hi

    I am trying to have sort functionality on Ultra Win Grid on column header click. The problem is I want it to sort by Natural sort order. The field type is string.

    Do we have Natural sort order functionality in UltraWinGrid? 

    Thanks

  • Sort by Summaries

    Hi,
    We are working in a grid with 'Outlook Group by' style.
    In order to sort by summaries we use a custom 'Groupby' class using as example http://www.infragistics.com/community/forums/p/9904/62322.aspx.
    The problem appears when we group…

  • Filter/Sort groupBy results by number of items?

    Hi All,

    Is there any way to filter or sort grouped results by number of items within each groups ?

    I'm looking similar functionality to SQL syntax

    GROUP BY NAME

    HAVING Count(*) > 1

  • Load on Demand with Sorting and Filtering

    I am looking into ways to improve performance of our ultragrid when it comes to handling large databases (several 100k to a few million entries). I have seen that using load on demand helps immensely to reduce the time to display the data.

    The…

  • Initial Sort Direction

    When an user click the header for a column that isn't sorted, it initially will sort ascending, but depending on the business context, that doesn't always make sense. The only way I've found to handle this is a hackish chunk of code from 2009 or so.…

  • UltraWinGrid does not sort a column formatted as currency

    I define a UltraWinGrid using the next code. Then, I load the information and it's displayed correctly, the column Sales is displayed as Currency. The problem is when I sort the column, it's displayed as Text instead of Number. It's sorting by the formatted…

  • Sorting a combobox column on valuemember instead of display member

    I have a grid with a month column where I have an .EditorComponent = UltraComboBox

    The ComboBox has two columns Monthnumer and month name.

    When I sort the grid on the month column it is sorted by month name(IE April comes first). I want the column to…

  • WinGrid filtering and grouping on unbound columns

    Hi,

    I've got a couple of issues (related) with the ultragrid. Basically, if I am grouping by a column and I try and filter by an unbound column without clicking the header first, the program appears stuck in a loop. I can add code in an event to force…

  • Can I sort by Field instead of Column?

    I have a Grid set up that is based on a BindingList and I need it to sort based on the first column.

    The problem I'm running into is that I don't have any columns:

    this.GridHost.Fields.Count = 8      // These are what look like "Columns" on the…

  • Special sorting for hidden cells

    I have a grid whose datasource is set to a list of objects. In the InitializeRow event, I am checking the value of each initialized row's object, and if that condition is true, then I am setting the hidden property on 3 cells to be true. When I try to…

  • Sorting Ultrawingrid with decimal values

    We are using UltraWinGrid in our project and we are facing trouble with the sorting order of the grid.

    We do have DataSource for the grid. Suppose the values in the DataSource are:

    Column[0] = "Pual", "John", "Zebra", "Smith"…

  • Custom Sort Indicators Trim Column Text

    We have created custom sort indicators to go below the text in a column so we can utilise the space as much as possible.

     

    The existing sort indicators require additional column width to fit the image in. While using our custom image some column text…

  • Load On Demand behaviour with 'All data dependent features'

    Can someone please explain how the grid behaves in the following scenarios when the grid is loaded on demand using Virtual mode.

    1. When text needs to be searched from the grid.

    2. Sorting

    3. Filtering

    Shall we have to do something ourselves OR grid…

  • How to sort summary column

    I am trying to sort my group by summary column. If I put a summary on a quantity field and group by customer, it works great.  also I  can sort the grouped customers by the summary value using GroupByComparer . but, if i have muti summary column,how can…

  • Sort problem with bound grid

    I have a grid that is bound to a DataTable via a DataAdapter.

    After applying updates to the table I spin through the table rows checking to see if any of the rows failed to update. If they did then I copy the error message to the Tag of the corresponding…

  • Win Grid: Change SortIndicator color

    Is there a way to change a color of SortIndicator in a Win Grid column? We use a custom GridColumnHeader background and sorting indicator (arrow) is not clearly visible.

    Thanks, Igor

  • Wingrid sorting

    I have this strange behavioir of the wingrid

    There are three records in the grid:
    NameA  other fields
    NameD  other fields
    NameF  other fields

    Now i want to add Name B, i get a new row at the end and i type
    NameB other fields

    When finished entering and about…