Tagged Questions
0
votes
0answers
17 views
C#: Convert collection of arraylist to dataview
Actually I wanted to convert a DataGrid to DataView:
DataSet dataSetExcel = new DataSet();
DataTable dataTbl = new DataTable();
DataView dataVw = (DataView)TimeEntryGrid.DataSource;
dataTbl = ...
0
votes
0answers
358 views
Binding DataGrid to DataView of DataTable doesn't update new columns
I have a DataTable that I create rows and columns for from another part of the program. I bind the default DataView of this DataTable to a DataGrid. I update my DataTable in the following format:
1: ...
3
votes
2answers
2k views
Dynamic tooltip depending on mouse over on a row in a datagrid(NOT datagridview)
I am trying to make it so that when the user mouses over a row in my DataGrid / dataview, each row would display a different tooltip outcome.
I cannot really figure this out. with DataGrid how can I ...
0
votes
2answers
460 views
WPF DataGrid custom sort: reorder items in ItemsSource
I have my custom grid which inherits from DataGrid (from WPFToolkit) that has around 10000 items in it. The built-in sort is very slow. As such I have written a separate class that keeps a running ...
1
vote
0answers
317 views
supporting paging as user scrolls through WPF datagrid bound to a dataview
How do I support paging on the WPF datagrid that is bound to a dataview ? Paging should happen
as user scrolls through the datagrid. I retrieve 100 rows per page from the DB and load them up in
...
3
votes
1answer
398 views
WPF datagrid refreshes on it's own when it's not supposed to
I feel like I'm missing something here, but I have this datagrid which when the datasource changes, automatically redraws it self with no logical reason for it doing so.
I have the datagrid bound to ...
1
vote
1answer
465 views
WPF Datagrid Edit won't allow me to change other cells
I've a Datagrid whose DataContext is assigned to a Dataview. When I try to edit the datagrid shown in the form there appears a red border around the cell being editted AFTER I click out or press ...
0
votes
1answer
1k views
How to format a date column in a DataGrid from VB
I have a .aspx file with a datagrid in it:
<asp:DataGrid ID="Gifts"
AutoGenerateColumns="True"
runat="server" AllowSorting="True">
</asp:DataGrid>
The .aspx.vb file associated with ...
1
vote
2answers
1k views
C# vertically oriented DataGrid: change column names
I'm currently using a technique I found while poking around the interwebs for flipping a datagrid's orientation in C# for a SharePoint web part. It's working correctly, pulling data from a SQL Server ...
1
vote
3answers
1k views
Asp.net binding big dataview to DataGrid
I have a dataview with around 2000 rows. At page load I want to bind the dataview to an object datagrid :
dataGrid.DataSource = dv;
dataGrid.DataBind();
However the time response is very ...
0
votes
2answers
155 views
Odd paging problem with DataGrid and sorting
I have a data table that is being filled by a stored procedure. I need to filter down the results some, so I get a data view from the default view and apply a row filter to it. I then bind this to ...