Browse by Tags
All Tags » Sorting (RSS)
-
In outlook Application if ''View->Arrange by->Show in Groups'' option is turned on .... and then u sort by any column it will group according to that column u've sorted. I want to implement the same thing in my application .
For Example
u have 3 columns
column1, column 2, column 3 and the user clicks on the Column 3 ...
-
Hi
My requirement is when i click on a any Grid column Header I have to Group by that column. It looks like i have to Maintain the sort order and then find the Current Sorting column when the user clicks on the Column Header. Is there a better way of doing the same.
-
Hi
I want to know if there is way to get the Column which is currently getting Sorted with
the Row Selecting mode turned on and with Read only property set to true.
I'm aware of the CurrentColumn Property in the DataGrid, but it always return null.
-
My grid is bound to a list of objects. I have some columns bound to properties on objects such as ObjectA.PropertyObject.PropertyA
FieldName=''PropertyObject.PropertyA''
Sorting does not work. Could you tell me what Im missing here?
In version 2.0 in code i was adding this as a workaround to get sorting to work for the columns on nested ...
-
Can we disable sorting on version 3.0 data grid without tweaking the datasource?
-
I have a three level Master/Child grid. I can prevent column sorting in the master level by
<xcdg:DataGridControl.View> <xcdgv:TableView UseDefaultHeadersFooters=''False'' ...
-
i have a grid that that one if the columns is binded to an Object that implemented the IComperable Interface.
when i click the column header to sort it it reaches the CompareTo method but the object that is sent and the this are the same for each row
is there any explanation for this behviour?
-
Sorting, Custom Sorting and Multi-Level sorting can be done in code by using the DataGridControl.Items.SortDescriptions collection.e.g.myDataGridControl.Items.SortDescriptions.Add ( new SortDescription( ''myFieldName'', ListSortDirection.Ascending ) );
|
|
|
|