Tagged Questions
0
votes
0answers
10 views
Load data from gridview to datatable
I am trying to load data from my GridView to DataTable. I actually added the picture of my grid below. I want to mimic my datatable just like the GridView. Can someone please help me with the code?
...
0
votes
2answers
48 views
vb.net dataview populated by sql
I'm trying to load the data from an sql query into a datatable which will load a GridView. See code below...
Dim dv As New System.Data.DataView
Dim dt As New System.Data.DataTable
dv = ...
0
votes
2answers
650 views
Dataview Rowfilter
I have a textbox and a button. What i am attempting to do is filter a gridview with the data that has been searched for. The two fields im searching for are customerID and CustomerName.
My code:
Dim ...
0
votes
3answers
81 views
Adding header rows to Gridview
My gridview is similar to this:
12- CategoryA - other columns
13- CategoryA - other columns
14- CategoryA - other columns
15- CategoryA - other columns
16- CategoryB - other columns
17- CategoryB - ...
0
votes
1answer
200 views
DataView from strongly typed DataSet
We have a strongly typed DataSet created by using the DataSet designer in Visual Studio.
Can you show us the needed coding to create a DataView from this DataSet?
This will be used in an ASP.Net ...
0
votes
1answer
449 views
Creating a DataView for sorting ASP.Net GridView columns
We have a typed DataSet created by the Visual Studio DataSet designer.
Can you tell me how to create a DataView object from the typed DataSet? We want to change the sorting of it so it can be ...
0
votes
1answer
61 views
Error on filling a gridview based on the values of a dataview from a different table with no direct FK's
I have these tables:
TABLE_DIRECTOR
-directorID
-name
-adres
-birthDate
-yearsExperience
TABLE_FILM
-filmID
-directorID
-filmstudioID
-title
-budget
-filmstudioName
-directorName
TABLE_FILMSTUDIO
...
1
vote
1answer
975 views
DataView not Sorting properly after DataTable GroupBy
I am currently getting data from SQL Server and storing in a DataTable. I am applying GroupBy operation on that DataTable in order to display the table in various forms in DataGrid. After making into ...
0
votes
1answer
721 views
How to Implement Rowspan in a GridView (for .NET 3.5)
I created a custom GridView (actually a RadGrid) which does roughly the following.
Initialize GridView formatting
Setup Columns (depending on type of data to be displayed)
Populate the rows
When ...
0
votes
1answer
533 views
Error( the type or namespace name Data View could not be found)
adsSearch.FilterExpression = string.Format("[Product Title] = '{0}'", TextBox1.Text);
DataView dv = (DataView)adsSearch.Select(DataSourceSelectArguments.Empty);
if (dv.Count > 0)
{
...
0
votes
0answers
305 views
aspx GridViewSortEventArgs cannot find column to sort on
I have weird error that pops up in an organized test run but works for genearl user consumption.
A generic query viewer page uses a datatable to load a gridview. I have an onSort method for doing ...
0
votes
3answers
105 views
Is there a way to sort specified records in a GridView/DataView, rather than the WHOLE table?
For example, would I be able to sort rows with index 0 till 9, and rows 10 till 15 will remain unsorted? Is this possible?
If so, could someone suggest ways by which this may be accomplished?
...
1
vote
1answer
130 views
SQL statement not being correctly populated from DetailsView (ASPX/C#)
I've got the following code in an ASPX page:
<asp:DetailsView ID="DetailsView4" runat="server" AutoGenerateRows="False"
DataKeyNames="ChangeID,Completed" ...
0
votes
1answer
499 views
Asp Update Panel - Details View Updates Underlying GridView doesn't
I have an Asp.net gridview on a page, when a buttonfield is clicked (instead of select) it opens a popup form (my popup not asp's) which contains the detail of the gridview row displayed in an ...
0
votes
1answer
2k views
Cannot change DataType of a column once it has data
I want to sort a gridview by a datetime-column so I need to change the datatype of that column
I try it with following code but I'm getting the error:
...
1
vote
2answers
3k views
How to sort a DateTime-column in DataView?
I have a gridview with some columns and I need to sort the gridview by a date-column. But I fail in sorting it correctly. This is the code that I use:
dt.DefaultView.Sort = "Meldingsdatum asc";
...
0
votes
1answer
638 views
Unable to sort a GridView populated by DataView in ASP.NET 2.0 using C#
I am working on extending an ASP.NET 2.0 application using an InterBase database. My experience is in PHP/MySQL, so my familiarity with ASP is currently in the 2-week range, and is pieced together ...
1
vote
1answer
4k views
DataView.Count different DataView.Table.Rows.Count
I am using C# and .NET 3.5 and have a GridView that I am setting the dataSource programatically in the code-behind page. I have data in a DataTable and then depending on a column value (isValid ...

