Browse By Tags

  • Wingrid sort column with String and numeric character like 'ABC-1'

    i wnat to know how to sort column value like this.

    H21-1

    H21-10

    H21-2

    to 

    H21-1

    H21-2

    H21-10

    Sort data before binding and then proceed with binding. but when client click header to change sorted Data.
    then
    data is sorted erratically.

  • allow user to sort by groupbycolumn or a column summary in ultrawingrid

    Let me try to explain this as clearly as I can.

    I have an UtraWinGrid with columns such as Employee and Hours among others. The user is able to group by a column. My client requires that the user be able to group by Employee and, while grouped, be able…

  • Several questions on Wingrid and rowedittemplate

    HI,

    I have several questions about the wingrid and rowedittemplate.

    When adding a row to a grid how can I make it so that the wingrid refreshes and put the the added row on its place in the sorting order of the wingrid can this be done with a simple…

  • Sort Groups by Summary

    I created a customer comparer class to allow a user to sort the grid by group by summaries. Thse code is below:

    public class GroupByComparer: IComparer

    {

     

     

    private string _key;

     

     

     

    public GroupByComparer(string columnKey)

    {

  • Passing the sort, search control to the datasource

    The datasource we are using has around 50K records. We want to implement virtual paging so at time only 50 records are bound to the grid.

    We would need to control search and sort functionality of the grid to make sure the virtual page contains the 50…

  • Sort by FilterCondition?

    Is this possible? I have 3 columns in a combo drop down: Part # (KeyCol1), UPC (KeyCol2), and Description (KeyCol3). When a user types in the combobox, I want the combobox to be able to filter Part #s that start with the combobox text, UPCs that match…

  • Sort not refreshing on ultradropdown on ultragrid.

    I have an  ultragrid with a column whose ValueList is set to an ultradropdown. The dropdown has 2 visible columns - clientname and clientcode.

    I have a button on the form which changes the DisplayMember of the dropdown (this is for autocomplete).

    I am…

  • Sorting empty DateTime in UltraGrid

    Hello to all,

    i have a UltraGrid and a problem with the column sorting.

    If i use the C# nullabe type or String.Empty  for DateTime (DateTime?) the sorting dosn't realy work fine.

    Has anybody  experience with nullable types or empty DateTime Value…