Browse by Tags
All Tags » Selection (RSS)
Showing page 1 of 2 (12 total posts)
-
I have a similar problem. I need to get a selected item in Detail list, so I can have it through Data Binding.
SelectedItem returns null when I click on an Item in the Detail list.
-
Recently, we had a question here at technical support asking if we had ''Excel Like Selection of DataCells''.
Well... we don't! When SelectionUnit is set to Cell on DataGridControl it is possible to make your selection on a cell-by-cell basis and to select multiple cells at once by Shift Clicking but still, that is not what some clients expect, ...
-
Hi,
I'm working with datagrid version 4.1 and use group headers in my grid. Now I want do select individual group headers to allow the user to apply changes to several sub items in one step.
I'm looking for hours so far, but I can't find how to do this. Is this not possible with the grid?
Thanks, Manuel
-
I need to be able to determine the sorted Index of a business object loaded into a datagrid.Or rather, I need to know all the indices of the items selected.
Does anyone have an idea on how I can achieve this?
Best Regards,
Troels Larsen
-
Scenario:On ''reload'' button click I store SelectedItem value, than data collection used by DataGrid is reloaded and as last step I set SelectedItem to stored value (last selection before reload).
Issue:DataGrid by its self overwrites SelectedItem value set as last step in scenario with first row value. It looks, like ...
-
Is the following possible?
My grid is bound via DataGridCollectionViewSource to some collection. Each item in this collection is of the same base type, which has an IsSelected property. Is it possible to bind the datagrid's selection to this property - so that when I select something in the datagrid, the IsSelected property is updated. ...
-
I can explain this behaviour in xceed wpf data grid demo.....Steps to reproduce...
1. open this link http://download3.xceedsoft.com/demo/gridwpf/Xceed.Wpf.DataGrid.Samples.LiveExplorer.xbap
2. Click on displaying data.
3. Click on ''Ship Via'' Column to sort it in Descending Order.
4. Scroll the vertical bar to the top so as to reach ...
-
Hi all
I am using Xceed DataGridControl.
Sorting Behaviour : When a row is selected and any column is sorted then the selected row will still be selected but if the last row is selected and any column is sorted in assending order then the select row is comming at the top with blank grid afterwards and vertical scroll bar is also comming.
-
Hi Yuriy,
Fist of all get hold of the item you wish to navigateSystem.Data.DataRowView dv = myGrid.Items[myIndex];
Then set this item as the current itemmyGrid.CurrentItem = dv;
Then select itmyGrid.BringItemIntoView(dv);
and you are done...
Enjoy
-
Hi All
my first post on Xceed forum, Just started using xcd grid and want to add check box to the first column so that it can hold primary key,
and on submission i can perform action on the selected list.
Thank You
Gaurav Joshi
1
|
|
|
|