VS 2008 / Transposing Data In A Gridview Control?

Jul 1, 2011

The data in my dataset looks like the following:

Here is how the data looks in the dataset :

Deal Cashflow Date
-----------------------------------------------
0007 1228888 01/12/2011
0007 898998 02/12/2011
0007 999999 03/12/2011
0008 888888 01/12/2011
0008 777777 02/12/2011

When I transpose the data, it should look like this:

Deal 01/12/2011 02/12/2011 03/12/2011
0007 1228888 898998 999999
0008 888888 777777

View 4 Replies


Similar Messages:

VS 2008 / Show The Data Either In Chart Control Or Gridview Control?

Feb 11, 2013

I have a simple .aspx page.

I want to show the data either in Chart control or Gridview control. When the user selects an option to see the data either in chart control or grid view control, that specific control has to show up and other control has to become invisible.

So far, I am able to populate data successfully in the chart control. If the user chooses "Grid view" option, how can I show the data in grid view control in the same location. I don't want the gridview control to be shown in a pop up window or any other window.

View 2 Replies

VS 2008 Bound Gridview Control - Check When No Data?

Dec 16, 2010

I have a gridview control on a .aspx page. It is a bound control. So basically I didn't have to write any code to pull the data from database and show it on the grid.

<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionStrdatabase %>"
ProviderName="<%$ ConnectionStrings:ConnectionString.ProviderName %>"
SelectCommand="SELECT * FROM order WHERE SETTLEMENT_DT > AS_OF_DT"
</asp:SqlDataSource>
<asp:GridView ID="GridViewMissingCusipNumbers" runat="server"
AllowPaging="True" AllowSorting="True" SkinID="Professional" Font-Name="Verdana"
Font-Size="10pt" Cellpadding="4"
HeaderStyle-BackColor="#444444"
HeaderStyle-ForeColor="White"
AutoGenerateColumns="False"
DataSourceID="SqlDataSource1" DataKeyNames="BO_SECID"
onrowcommand="GridViewMissingCusipNumbers_RowCommand" Height="285px"
onrowediting="GridViewMissingCusipNumbers_RowEditing"
onrowupdated="GridViewMissingCusipNumbers_RowUpdated"
onrowupdating="GridViewMissingCusipNumbers_RowUpdating" Width="426px"
onrowcancelingedit="GridViewMissingCusipNumbers_RowCancelingEdit">
<Columns>
<asp:BoundField ReadOnly="true" DataField="BO_SECID" HeaderText="BO SECID"
SortExpression="BO_SECID" />
<asp:BoundField DataField="CUSIP" HeaderText="PROXY CUSIP" SortExpression="CUSIP" />
<asp:BoundField DataField="PRICE" HeaderText="PRICE" SortExpression="PRICE" />
<asp:CommandField ShowEditButton="true" />
</Columns>
<HeaderStyle BackColor="#444444" ForeColor="White"></HeaderStyle>
<AlternatingRowStyle BackColor="Silver" BorderColor="Black" />
</asp:GridView>

So far so good. But where is no data is not returned from the database, I want to display something on the page saying "No data returned". But I don't know which gridview control event gets fired so that I can write some code in it to check if the records returned are zero.

View 1 Replies

Forms Data Controls :: Can Visual Studio 2008 Gridview Control Do Grouping

Mar 1, 2010

Can Visual Studio 2008 Gridview control do grouping? And how?

View 1 Replies

VS 2008 - How To Create A Custom Gridview Control

Dec 9, 2010

I'm creating a custom gridview control. so far I've been able to add custom sort arrows and an export to excel feature.

Now I want to have a textbox and a button in the header row to filter each row.

I want to extend either the boundfield or boundcolumn class to add a property that will allow me to distinguish wheter the column should have a filter textbox in the header.

View 37 Replies

VS 2008 - How To Build A Custome Gridview Control

Jan 17, 2011

I'm trying to build a custome gridview control. now I've gotten quite far and I am now a bit stuck. I have a property that allows me to specify the columns datatype.

Now when I specify either a datetime or date variable I need to format it properly. Thing is, if I use a database other than sql server how can I format the dates properly. ZI want to make my grid as reusable as possible.

If i use date.tryparseExact I need to know the foemat of the date value being passed in. Problem is, I won't always know the exact format.

View 11 Replies

VS 2008 - Add ModalPopup To Gridview Custom Control?

Jan 13, 2011

I have a Gridview Custom Control (class library project). What I want to do is, add a button to the page. Once the button is clicked, I need a ModalPopupEctender to come up with a checkboxlist of all the Columns in the SQLDataSource that populates the Gridview.

Now since this is a class library project that inherits from the Gridview, I'm not sure how I can add a div at the very top of the page, with the "Choose Columns" button.

Should I create a user control that contains my Custom Gridview? Reason I want to do what I ask is because I want to reuse this in as many projects as I can, I wan this functionality built in to my dll.

View 3 Replies

VS 2008 - How To Hide Gridview But Still Access Control

Mar 26, 2013

I know that when you hide a control is asp.net that you cannot access it. Is there a way of hiding it as far as a panel? Can I put it in a panel but size the panel to 1x1? Or in a div and hide it?

View 2 Replies

VS 2008 - How To Calculate Between Two Columns In Gridview Control

Jan 6, 2012

I have a simple gridview control on .aspx page. It has one combo box in the gridview control and rest of the columns in the gridview control are all bound controls.

When the user picks something from combo box, I should multiply the number (picked from the combo box) with other number in the same row (meaning in a different column on the same row). I want to do all this in server controls not thru JQuery or Javascript.

Basically my problem is I am able to read data from unbound combo box control in the grid. But I should be able to read the contents of another bound column in the same row and perform multiplication between those two fields.

Code:
<asp:GridView ID="GridViewActuals" runat="server"
DataSourceID="SqlDataSource1" DataKeyNames="gl_number"
onrowcommand="GridViewActuals_RowCommand" Height="285px"
onrowdatabound="GridViewActuals_RowDataBound"
onrowupdated="GridViewActuals_RowUpdated"
Font-Names="Verdana" onrowupdating="GridViewActuals_RowUpdating1">

[Code] ....

View 2 Replies

VS 2008 AJAX Control In Gridview / Possibile To Set A NumericUpDownExtender

Jan 11, 2010

I just want to know if it's possibile to set a NumericUpDownExtender [URL] in particular the forth example, the one with the blue arrows!) at RowEditing of my Gridview when some column are converted in textbox.

If I can't, I want to ask you if it's possible to link a RegularExpressionValidator to the textbox in the row.

View 2 Replies

VS 2008 Error When Assigning A Dataview To A Gridview Control?

Mar 25, 2011

I've been working on this error all day! I have a dataview created from a sqldatasource control and I'm trying to assign it to a gridview but I get Object reference not set to an instance of an object.
Code:
Try
Session("dsCustomer") = "Y"
[code]......

Can't I assign a dataview as a datasource? Or not?

View 3 Replies

VS 2008 Checkbox Template Field In Gridview Control?

Sep 13, 2010

I have a checkbox template field in a grid view control. I want to execute some code when a checkbox is checked or unchecked - how do I do this? Which event is fired?

View 1 Replies

VS 2008 Gridview Control Date Datatype Display?

Feb 7, 2011

I have a simple Gridview control on .aspx page. All I am doing is selecting 3 or 4 fields from oracle database.When I have to_char() function it says "portfolio_rundate" is a not a valid field in the datasource. Wherease the same SQL perfectly works fine in oracle.

Code:
<asp:GridView ID="GridViewHistoricalRuns" runat="server"
AllowPaging="True" AllowSorting="True" SkinID="Professional" Font-Name="Verdana"
[code]....

View 3 Replies

VS 2008 - Gridview Control - User Edit Only One Column

Mar 14, 2011

I have a gridview control on .aspx page. Situation is, the columns in the gridview control are not databound. I query the database and load the gridview control using the following code.

GridViewstockcalc.Visible = true;
GridViewstockcalc.DataSource = dataSetstockcap.Tables[0];
GridViewstockcalc.DataBind();

The gridview control shows about 13 columns from the database. But we want the user to be able to edit only one column. Rest of the 12 columsn should be read only. When the clicks one Edit button button, as usual the Update and Cancel buttons should come up. It is not happening. Only the _Rowediting event is getting trigged. Following is the code from my .aspx page. I don't know anything about template columns and not sure if I have to use that concept in my situation.

<asp:GridView ID="GridViewstockcalc" runat="server"
HeaderStyle-BackColor="#444444"
HeaderStyle-ForeColor="White"
onrowcommand="GridViewstockcalc_RowCommand" Height="150px"
Font-Size="Small" onrowediting="GridViewstockcalc_RowEditing"
onrowupdating="GridViewstockcalc_RowUpdating">
<Columns>
<asp:CommandField ShowEditButton="true" ShowCancelButton="true" />
<asp:TemplateField HeaderText="ticker">
<ItemTemplate>
<%# Eval("ticker")%>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox runat="server" ID="txtticker" Text='<%# Eval("ticker")%>' />
</EditItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="fhlb_ID" HeaderText="ticker" ReadOnly="true" />
</Columns>

View 3 Replies

VS 2008 - Creating Gridview User Control With Sorting And Filtering?

Sep 20, 2010

I find myself always repeating code when it comes to gridviews. I want to build a usercontrol so I can just set a datasource andcolumn types etc and I can use the same control over and over in different projects.

View 4 Replies

VS 2008 Simple Gridview Control - Connection To SQLServer Not Working

Dec 1, 2011

I have a simple .aspx page. Where I need to connect to sql server 2008 and show the records on the page in a gridviewcontrol. It will have Edit button on the gridview control. I am getting some weird message about the connection string.

Error message is:
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentException: Keyword not supported: 'initial catalog'.

Web.config file:

Code:
<connectionStrings>
<add name="ConnectionString_SqlServer" connectionString="Data Source=PricingDB;Initial Catalog=DB1;Integrated Security=True;Connect Timeout=300" providerName="System.Data.SqlClient" />
</connectionStrings>

In the .aspx page this is how I am connecting.

Code:
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString_SqlServer %>"
ProviderName="<%$ ConnectionStrings:ConnectionString.ProviderName %>"
SelectCommand="select name, value from dbo.Pricing order by name asc"
>
</asp:SqlDataSource>

View 2 Replies

VS 2008 / Gridview Control - Update Error - ORA-01008 - Not All Variables Bound

Jul 29, 2011

I have a simple gridview control. It has edit and cancel buttons for each row. User's can click on edit column and edit a row and click on save to save the record.

When the user clicks on save we get the error: ORA-01008: not all variables bound

User is allowed to edit only 3 fields and rest of the fields are only readonly. For those editable three fields, I am using EditItemTemplate. ASP.net doesn't throw any errors for the first two edititemtemplates. The problem comes only with the third field which is "BSIS Type". I tried to figure out almost 5 hours and don't know what to do.

This the code I have:

HTML Code:
<asp:GridView ID="GridViewActualsMapping" runat="server"
HeaderStyle-BackColor="#444444"
HeaderStyle-ForeColor="White"
Font-Size="10pt" Cellpadding="4"
AutoGenerateColumns="False"

[code]....

Error is:

HTML Code:

ORA-01008: not all variables bound

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.OracleClient.OracleException: ORA-01008: not all variables bound

View 5 Replies

Forms Data Controls :: Gridview Inside Another Gridview Both Sorting - Using 3.5 Visual Studio 2008 C# Code Behind

Apr 16, 2010

I have the gridview inside another gridview, i want to sort that both gridviews, I don't know how to achieve using asp.net 3.5 visual studio 2008 c# code behind. Following are my aspx page,

<div
id="divclm"
runat="server">
<asp:GridView
ID="claimgrid"
runat="server"
AutoGenerateColumns="False" AllowSorting="True"
Width="100%"
AllowPaging="True"
CssClass="gareahead"
EmptyDataText="No Records To Display"
OnRowDataBound="claimgrid_RowDataBound"
OnRowCreated="claimgrid_RowCreated"
GridLines="Both"
OnPageIndexChanging="claimgrid_PageIndexChanging"
OnSorting="claimgrid_Sorting"
CaptionAlign="Right">
<Columns>
<asp:HyperLinkField
Text="<img id='upimg' src='Styles/Images/appschg.gif'/>"
ItemStyle-Width="10px">
<ItemStyle
Width="10px"
/>
</asp:HyperLinkField>
<asp:BoundField
DataField="name"
HeaderText="Name"
SortExpression="name">
<HeaderStyle
HorizontalAlign="Center"
/>
<ItemStyle
HorizontalAlign="Left"
/>
</asp:BoundField>
<asp:BoundField
DataField="code"
HeaderText="Code"
SortExpression="code">
<HeaderStyle
HorizontalAlign="Center"
/>
<ItemStyle
HorizontalAlign="Left"
/>
</asp:BoundField>
<asp:TemplateField>
<ItemTemplate>
</td></tr>
<tr>
<td
colspan="6"><div
id="<%#Eval("code") %>"
style="display:none;position:relative">
<asp:GridView
ID="Gdclmline1"
runat="server"
AllowPaging="True"
AllowSorting="True"
AutoGenerateColumns="False"
OnSorting="Gdclmline1_Sorting" BorderColor="Green"
BorderStyle="Solid"
BorderWidth="1px"
OnRowDataBound="Gdclmline1_RowDataBound"
OnRowEditing="Gdclmline1_RowEditing" Font-Names="Verdana"
Font-Size="8pt"
Font-Strikeout="False"
OnSelectedIndexChanging="Gdclmline1_SelectedIndexChanging"
OnRowUpdating="Gdclmline1_RowUpdating" PageSize="1000"
RowStyle-Wrap="false"
Width="100%"
CssClass="gareahead"
EmptyDataText="No Records To Display"
GridLines="Both">
<PagerSettings
Mode="NextPreviousFirstLast"
NextPageText="Next"
Position="Top"
PreviousPageText="Prev"
/>
<Columns>
<asp:TemplateField
HeaderText="phone"
SortExpression="phone">
<HeaderStyle
HorizontalAlign="Center"
/>
<ItemStyle
HorizontalAlign="Left"
/>
<ItemTemplate>
<asp:Label
ID="lblphone"
runat="server"
Text='<%#Bind("phone") %>'> </asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField
HeaderText="address1"
SortExpression="address2">
<HeaderStyle
HorizontalAlign="Center"
/>
<ItemStyle
HorizontalAlign="Left"
/>
<ItemTemplate>
<asp:Label
ID="lbladdress1
runat="server"
Text='<%#Bind("address1") %>'> </asp:Label>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<RowStyle
CssClass="gr"
Height="100px"
HorizontalAlign="Left"
Wrap="true"/>
<SelectedRowStyle
CssClass="gr"
/> <PagerStyle
CssClass="gareahead"
HorizontalAlign="Left"
Wrap="False"
/> <HeaderStyle
CssClass="ghead"
ForeColor="White"
Wrap="true"
/> </asp:GridView>
</div>
</td>
</tr>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<PagerSettings
Mode="NextPreviousFirstLast"
NextPageText="Next"
Position="Top"
PreviousPageText="Prev"
/>
<HeaderStyle
HorizontalAlign="Center"
VerticalAlign="Middle"
CssClass="ghead"
ForeColor="White"
/>
<RowStyle
CssClass="gr"
/>
<SelectedRowStyle
CssClass="gs"
/>
</asp:GridView>
</div>

that aspx page contains gridview that contain one more gridview inside in it.Now i want to sort out both the grid i.e)claimgrid and Gdclmline1 i want code in c#.

View 3 Replies

VS 2008 Placing Data In Repeater Control?

Mar 30, 2011

This is my first time using the repeater control. I found some examples and to place a value in a label, I am doing the following:

Code:

<asp:Label ID="lblLocation" runat="server" Text=<%#Container.DataItem("City")%> ></asp:Label>

What I want to do is write the City and State to the single label control. When I put both in there for the lblLocation it fails. I would prefer to combine them rather than add another label control.

View 3 Replies

Forms Data Controls :: Gridview Control Select Should Populate Second Gridview Control

Oct 6, 2010

I am new to this forum as well as Visual Studio and asp.

I am connecting to an access db using Visual Studio Express 2010.

I have a dropdownlistbox that pulls names from a database. When I select a name Gridview1 gets populated. Now I want to populate Gridview2 with more data when I click 'Select' link in Gridview1 but it's not working.

I am passing name (string) and number (number) fields to the gridview2 based on the gridview1.selectedvalue property and am seeing:

Input string was not in a correct format.

View 6 Replies

VS 2008 Data From Gridview?

Jun 1, 2010

I currently use this code to get the ID of the selected data on the grid view

vb Code:
Dim ID As Integer = (GridView1.DataKeys(row.RowIndex).Value)

Now i would like to get the data that is on the 7th column, it's a text, how can i do that?

View 39 Replies

VS 2008 - How To Populate Literal Control In Master Page With Db Data

Jan 21, 2010

I am using BlogEngine.net and just created a theme (site.master) file and works but when I add a literal control and try to call a function from App_Code I get a 'Compiler Error Message: BC30002: Type 'basicFunctions' is not defined.' error. I call functions from basic_functions.vb in normal .aspx pages at the root. Since my error page is in a subfolder that has it's own App_Code folder, do I have to do something different?

/toolkit/themes/CommercialSilk/site.master

HTML Code:

[code].....

View 6 Replies

VS 2008 - How To Make A Control For Not Load Post Data On Postback

Jun 24, 2010

is it possible to make a control NOT load Post Data on postback?

View 3 Replies

VS 2008 - Passing Data From Gridview Row To A Popup

Mar 1, 2012

I can't figure out how to do this. I have a gridview and I want the user to click on a row and pass some of the cell data to a model popup. For example, if I have a button called Delete on each row and they click the button, I want to popup a box to show the data from that row and ask to confirm to delete. I also need to use the data from that row to delete when they click Yes.

I'm sure I just missed on how to do this from searching. I'm looking for an example on the web.

View 1 Replies

VS 2008 - Add Command Field In A Data Gridview

Jun 30, 2011

I add a 'Command Field' in a data gridview, and i put a code in DataGridView1_RowDeleting and it is working..my problem now is how i can put a confirmation message before deleting a record in a datagrid?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved