Title:
plz help anyone
Name:
sachin kumar
Date:
9/25/2008 3:17:32 AM
Comment:
Just I want that data come from any data source but my datagrid heading column name will come in xml data file
|
Title:
I cannot be the only one to get this error
Name:
Ralphxyz
Date:
9/11/2008 10:46:02 AM
Comment:
Parser Error Message: Could not load type 'Pivot.Demo'.
Where oh where is "Pivot.Demo"
Certainly not in in the code download!
|
Title:
display image problem
Name:
Rajeev Gangwar
Date:
5/13/2008 4:15:27 AM
Comment:
Please tell me is there any option for binding the image in the datagrid using pivot table. thanks
|
Title:
Asp.Net(C#)
Name:
Rajasekar
Date:
3/12/2008 9:26:40 AM
Comment:
I need to bind the Repeated columns values in Single Columns
|
Title:
Not useful to show images
Name:
garima
Date:
1/28/2008 4:04:44 AM
Comment:
how can we retrieve images from database and display on a grid page with the help of pivot table.
|
Title:
Not Useful in Real World
Name:
Ron Jeremy
Date:
11/27/2007 8:53:25 PM
Comment:
WHo has pivot tables that don't have fields of the same value? You sample doesn't support datafields that have the same values for multiple fields.
The concept is OK, but you need to add some logic.
|
Title:
Problem where the left col has multple of same values
Name:
Lee
Date:
8/24/2007 5:10:45 PM
Comment:
Great for very basic pivots. however i have data like this. Date Qty failure 2007-04-23 2 Damaged Leads 2007-04-23 120 Improper fillet 2007-04-23 34 Non-wetting 2007-04-23 7 Solder missing 2007-04-23 1 Imp hardware mounting 2007-04-23 3 CONTAM need to see as 2004-04-23 Damaged Leads 2 Improper fillet 120 Non-wetting 34 Solder missing 7 Imp hardware mounting 1 CONTAM 3
|
Title:
ASP.NET 2.0 Code
Name:
Alloyd
Date:
5/27/2007 7:17:59 PM
Comment:
Were would I get VB.Net version of the code to use on an ASP.NET page. I have used a C to VB conversion utility to convert the code, but I have a type mis-match I can't solve in the BindHorzGrid Sub. Here CodeSnip:
' frist create the "anchored" column[0] -- Product Dim c As BoundColumn = New BoundColumn() c.HeaderText = pivotTbl.Columns(0).ColumnName c.HeaderStyle.Font.Bold = True c.DataField = pivotTbl.Columns(0).ColumnName c.ItemStyle.Font.Bold = True pageGrid.Columns.Add(c)
The type mis-match error is:
"Value of type 'System.Web.UI.WebControls.BoundColumn' cannot be converted to 'System.Web.UI.WebControls.BataControlField'"
|
Title:
special case
Name:
Ali
Date:
4/18/2007 2:08:24 AM
Comment:
Nice article. But there is a problem when you have repeated columns (repeated products)
|
Title:
CodeSnip: Pivot Tables with ADO.NET and Display in a DataGrid Paged Horizontally
Name:
Donna
Date:
1/23/2007 3:13:43 PM
Comment:
Excellent!! Thanks for the VB.net version, this works great!
|
Title:
CodeSnip: Pivot Tables with ADO.NET and Display in a DataGrid Paged Horizontally
Name:
PJackson
Date:
11/18/2006 9:51:50 AM
Comment:
Thanks. I like the simplicity. PJ
|
Title:
great pivot table
Name:
CSutherland
Date:
11/6/2006 1:34:47 PM
Comment:
Hey thanks for the great article! I'm trying to do something exactly like this and its a great example you have. Props!
|
Title:
Great
Name:
APetcu
Date:
9/13/2006 3:52:08 AM
Comment:
Plain and simple. Thanks!
|
Title:
ok
Name:
mgv
Date:
9/1/2006 4:28:45 AM
Comment:
not upto the mark try somewhat and get a better ones .
|
Title:
Great article
Name:
Stephan
Date:
7/7/2006 6:09:08 AM
Comment:
Steve, thank you for this article. It was of great help to me. This saved me time to program something simular
|
Title:
hello
Name:
great
Date:
4/4/2006 2:02:11 AM
Comment:
it works!
|
Title:
Indian
Name:
KiranKumar.P
Date:
3/28/2006 12:29:57 PM
Comment:
thank you steve sharrock. Its very useful code for .net developers;
|
Title:
Software Engineer
Name:
John McPherson
Date:
3/6/2006 2:57:09 PM
Comment:
I'm relatively new at vb.net and asp.net but I found what I was looking for...
Thank you.
Regards,
"Sufficiently advanced technology is indistinguishable from magic." - Arthur C. Clark, inventor of the telecommunications satellite
|
Title:
JavaScript Pivot Tables
Name:
Nick
Date:
2/4/2006 7:35:22 PM
Comment:
For an example of how to rearrange multidimensional tables using JavaScript, check out http://www.jnetiq.com
|
Title:
vb.net version of the pivot table function
Name:
Chris
Date:
12/20/2005 11:25:58 AM
Comment:
Here is the vb.net version of the pivot table function:
Public Function PivotTable(ByVal source As DataTable) As DataTable Dim dest As DataTable = New DataTable("Pivoted" + source.TableName)
' create shchema (string columns) for the destination ' the first column is for the source column name dest.Columns.Add(" ")
' the remaining dest columns are from each source table row (1st column) Dim r As DataRow For Each r In source.Rows dest.Columns.Add(r(0).ToString()) Next
' now add one row to the dest table for each column in the source, except ' the first which is the Product, in our case Dim i As Integer For i = 0 To source.Columns.Count - 1 - 1 Step i + 1 dest.Rows.Add(dest.NewRow()) Next
' now move the source columns to their position in the dest row/cell matrix ' starting down the destination rows, and across the columns Dim rr As Integer = 0 Dim c As Integer = 0 For rr = 0 To dest.Rows.Count - 1 Step rr + 1 For c = 0 To dest.Columns.Count - 1 Step c + 1 If c = 0 Then dest.Rows(rr)(0) = source.Columns(rr + 1).ColumnName ' the Product name Else dest.Rows(rr)(c) = source.Rows(c - 1)(rr + 1) End If Next c = 0 Next dest.AcceptChanges() Return dest End Function
|
Title:
pivot Table demo
Name:
manish punwani
Date:
12/2/2005 7:50:15 AM
Comment:
this was very helpful thanks a lot rgds manish
|
Title:
database conectivity
Name:
arvind
Date:
3/15/2005 12:29:28 PM
Comment:
how to attach a table of oracle in a aspx page in C#.net project.
|
Title:
CodeSnip: Pivot Tables with ADO.NET and Display in a DataGrid Paged Horizontally
Name:
Alejandro Cuellar Gaxiola
Date:
1/28/2005 7:15:50 AM
Comment:
This is an excellent article showing a very elegant way to pivot a table and how to manage the grid to present the data.
|
Title:
but what about image
Name:
vishal
Date:
12/3/2004 6:42:57 AM
Comment:
but what about images if i wants to display on the first row. when i tried and , when i wants to add first row than i am unable to retrieve values from database as i store image in byte() format
how can we retrieve images from database and display on a grid page with the help of pivot table.
|
Title:
VB.NET Code
Name:
Steve
Date:
11/9/2004 8:27:32 AM
Comment:
Here are a few links to various tools that will convert C# to VB.
http://authors.aspalliance.com/aldotnet/examples/translate.aspx
http://www.developerfusion.com/utilities/convertcsharptovb.aspx
http://www.kamalpatel.net/
http://w1.311.telia.com/~u31115556/desc/programs.htm#BabbelFisken
|
Title:
VB.NET demo
Name:
Bob
Date:
11/9/2004 7:20:30 AM
Comment:
Could you supply VB.NET demo code also?
|