Browse by Tags
All Tags » DataSet (RSS)
Showing page 1 of 2 (12 total posts)
-
I think this might be something obvious. I am playing around with the grid and I have to update the grid with data on a timer and for some reason whenever I clear dataset and bring new data into the dataset the cleared rows still show up in the xceed grid even though they no longer exist in the dataset. I have called the ...
-
Hi, I’m working on the WPF Grid (3.1).This grid is hierarchical ( 5 nested deep ) created in this way:public static DataGridCollectionViewbdsRows = null;private static PersonObservableCollectiondList = new PersonObservableCollection();public void LoadItems(){ dList = new ...
-
I'm trying to create a master / detail grid with a strongy typed dataset. The dataset contains two tables and the relationship between them. The xaml for the grid is.......
<xcdg:DataGridControl Grid.Row=''1'' AutoCreateColumns=''False'' Name=''dgAdverts'' ReadOnly=''True'' SelectionMode=''Single'' EditTriggers=''None'' ...
-
I.m using the Xceed datagrid v.2 for WPF, the free one.
When I bind to the grid using:
grdExceed.ItemsSource = ds.Tables[TableName].DefaultView
with a dataset containing around 1000 rows it takes about 3 minutes for it to display.
Is it supposed to be that slow or what???
-
Hi all,
I have a DataGridControl , i attached the datasource to the grid through DataGridCollectionView.... Now i want to add a column at run time to the same DataGridControl , but this column will have a different DataSource. How can i get this ??? If i am not clear to you i can clarify more ..........
-
Hi,I have used the XceedDataGrid and populated the grid with
the DataSet. Now to Keep the things simple i just wanted to get the
value of a cell in the selected row of the when users click on a
particular row...???
-
Is there a way to know what cell is focused? After modifying some records with a validation rule, my idea is to change the
DataContext property with the copy of data (so the display will reload with all the changes) and then
set the focus on the corresponding cell by code.
In this way, the user can
continue using the keyboard for ...
-
So is there a way to know what cell is focused? My idea was to change the DataContext property with the copy of data (so the display will reload) and then set the focus on the corresponding cell by code. In this way, the user can continue using the keyboard...
-
Hi all,
On my grid, I have some validation rules that depending on the data entered, some data of the underlying dataset may change. There is no problem when the data changed belongs to cells at the right on the edited cell, but if it's in the left it doesn't reload (but the underlying dataset is actually changed).
I can force the reload ...
-
Hi Jenny,Thanks for your reply.After debugging the Binding, I found that setting Mode=TwoWay in the Binding markup extension solved the problem.
1
|
|
|
|