Web Forms :: How To Change Gridview Header Column Names Dynamically

Apr 5, 2012

I want to change Gridview Header column names dynamically with if condition.

for example

IF condition 1 

UserID |   Full name | Transaction Amt |  Tancaction Date 

IF condition 2 

UserID | Full Name | DOB | Balnace | Date 

How to change Header column name for single Gridview dynamically ?  

View 1 Replies


Similar Messages:

C# - How To Change Column Names Randomly In Gridview

Jun 11, 2010

I am struggling to show different views of gridview with database values. Here is my requirement.

Database Table:

I need to show one drop downlist with three values 1,2,3. If user selects 3 i Need to show a grid like below

Age,AnnualSales and Assortment are names which are coming dynamically from database.

High,Medium and Core all are values

Here my question is I need to show same attribute names.

Like If the name changes from "Assortment" to "Location" I need to show it in different page index .

In page index 2 i need to show like below.

View 2 Replies

VS 2008 Gridview - Hide Certain Columns And Change Column Names

Jun 15, 2012

I have a gridview that I am loading from a stored procedure. I need to be able to hide certain columns and change the column names. Since it is loading with stored procedure the columns aren't listed in the gridview->edit columns properties.

View 1 Replies

Forms Data Controls :: Change The Header Text Of A Merged Gridview Column?

Jan 9, 2010

I have a merged column of firstname and lastname by "Select firstname + lastname from table" but when it appears in the gridview the header text of the column is "Expr1000". How can I change the header text of that merged column?, and I want to change its text into "NAME".

View 3 Replies

C# - Dynamically Changing Header Text Of A Gridview Column?

Feb 1, 2011

iam using ASP gridview. And i declare one label in headertemplate for setting heading of a particular column. How can i dynamicallly change the header text on a particular button click..

View 2 Replies

Data Controls :: Change Header Text In GridView Dynamically

May 7, 2015

Let's say I have unsorted 2 types of data.2 list box contains. 1,2,15,6,4 and apple, banana, carrot, dove, eggplant. . How can I sort it then make it as my HeaderText for GridView Column after a button is clicked?.

Data in GridView(headertext column)

apple banana eggplant dove carrot

View 1 Replies

Forms Data Controls :: Change The Column Name Of Gridview Dynamically At Runtime?

Jan 14, 2011

My issue is that , need to change the column name(following some format) of the gridview (which is binded with XMLTextReader). Without changing directly XML file, Required to change the column name dynamically at runtime .

Performance.xml

<Performance>
<Departments>
<Heading>FS</Heading>
<S0015>1</S0015>
<S0020>2</S0020>
<S0025>5</S0025>
<S0030>5</S0030>
<S0035>6</S0035>
</Departments>
<Departments>
<Heading>BS</Heading>
<S0015>0</S0015>
<S0020>3</S0020>
<S0025>5</S0025>
<S0030>1</S0030>
<S0035>3</S0035>
</Departments>
</Performance>

Heading S0015 S0020 S0025 S0030 S0035
FS 1 2 4 5 6
BS 0 3 5 1 3
Required Format:

Heading 00:15 00:20 00:25 00:30 00:35
FS 1 2 4 5 6
BS 0 3 5 1 3

View 6 Replies

Forms Data Controls :: Gridview Column Header Button Instead Of Header Name?

Nov 28, 2010

is there anyway i can add in the gridview in header column name a button instead of label ?

column name 1 column name 2 column name 3 button

i am using checkbox column in item template for the button ,i wish after selecting checkbox for some row to click on the button on the header !!

View 2 Replies

Forms Data Controls :: GridView Header / Change The Header Based On The Session Variable

Feb 16, 2011

I am using the following code to change the header based on the session variable

[code]....

View 2 Replies

Forms Data Controls :: How To Change The Column Header From A DataSet

Feb 21, 2011

The following query returns me the column name from the table in the database, and stores the column name in the grid. How can I change the column name in the grid using following code, if its possible?

DataSet p_dsInformixDataDs = new DataSet();
string cmd = "SELECT * FROM CUSTOMERS";
try
{
using (IfxDataAdapter da = new IfxDataAdapter(cmd, m_InformixDBConn))
{
da.Fill(p_dsInformixDataDs);
}
}
DataView myDataView = new DataView(m_dsInformixDataDs.Tables[0]);
if (myDataView .Count > 0)
{
GridView1.DataSource = m_dsInformixDataDs;
GridView1.DataBind();
}

View 5 Replies

Data Controls :: Pass GridView Column Header Values To Another Pages Table Header

May 7, 2015

How to pass gridview particular column values to another page's table header...

View 1 Replies

Forms Data Controls :: How To Write The Column Names In Gridview

Jun 22, 2010

I want to write the default column names in gridview when the data is not coming from the dataset or you can say that datset is blank.

I tried to use this [Code]....

But this does not help me and i am not able to see the column with name as 'ID'

View 12 Replies

Web Forms :: Show Data In GridView Returned By Sp Different Column Names

Jul 6, 2012

my sp return resultset with different column names based on different parameters passed to sp and now i want to show that data in asp.net(c#) gridview so how can i achieve this

View 1 Replies

Forms Data Controls :: Dynamically Binding Dataset Table Values To Datagrid's Header Column?

Jun 29, 2010

I want to dynamically bind dataset values into datagrid's header datafield.

Is it possible? To be more clear, when you click on datagrid's (Collection) from properties window, you get selected columns created from Bound column. So in those columns I want to dynamically display dataset's table values in those columns.

i.e like ds.Tables[0].Rows[0][0].

Is it possible to do it in Datagrid ItemDataBound function like,

e.Item.Cells[1].Text = ds.Tables[0].Rows[0][0]

or something like this? I know the above code is wrong and wont work since I tried it out and while building it throwed error saying, Cannot implicitly convert type 'object' to 'string'.

View 5 Replies

Forms Data Controls :: How To Change Sort Column Header Text And Retain The Sort Link

Jun 3, 2010

I have a simple dynamic gridview with following code -

GV = new GridView();

View 3 Replies

Web Forms :: GridView Getting Column Header Name On Client Click

May 29, 2012

how do i get the column header name when a user clicks on the header cell of gridview? either in javascript or on server side??

View 1 Replies

Forms Data Controls :: Sorting Using The Column Header Of A Gridview?

Jul 7, 2010

Dear all; I have the following gridview

Type Cost

BENZ 40,000

TOYOTA 20,000

Now, I would like a situation if either TYPE or Cost is clicked on, it would sort things in ascending order. see example below.

if Cost is clicked on, we will have the following sorting order.

Type Cost

TOYOTA 20,000

BENZ 40,000

I am still new to visual studio.net.

View 13 Replies

Forms Data Controls :: Want To Change Width Of Column Of Dynamically Generated Grid View?

Jan 4, 2011

i hav a dyanmically generated gridview with autogenerated columns = true.. i want to change the width of a column of a grid... i tried to do it in row databound event as...

e.Row.Cells[1].Width = Unit.Pixel(300);

but it doesnt work... and since d columns are genrated dynamically i cant set d width as grd.columns[0].width =...

View 3 Replies

Forms Data Controls :: ListView Column Header / How To Show Header

Mar 11, 2010

i have a problem with ListView control,when i bind data to it, it shows the heder of it also.

i don't want to show me the hedear, what should i do?

[Code]....

View 11 Replies

Forms Data Controls :: How To Change Header Css In Gridview

Feb 27, 2011

I used css for one header column in my gridview and how can change this css when user click in this column on header?

View 4 Replies

Web Forms :: Setting Gridview Header Back Color Dynamically ?

Mar 29, 2011

i am setting the gridview headers backcolor dynamically
if (!Page.IsPostBack)

{ buildGrid(); gvTeamGameSeries.HeaderStyle.BackColor = Color.FromName("red"); }

however everytime i reload the page,backcolor disappears.If i move it out from IsPostBack block ,it works fine but i want to load grid only when the page loads for first time(inside !Page.IsPostBack).

View 8 Replies

Forms Data Controls :: GridView Sort Column Header Underline?

Feb 17, 2011

AllowSoting is true on every column of my gridvieww.

i want to remove those underlines in everycolumn ...

how can i do that?

View 3 Replies

Forms Data Controls :: GridView Disappears When Click A Column Header To Sort?

Jul 28, 2010

I have a page with a TextBox, a Button, a GridView, and a SqlDataSource. I click the Button to execute the SQL in the TextBox using the SqlDataSource. The SqlDataSource populates the GridView. Everything works as expected until I click a column heading to sort.

When I click a column heading, the GridView disappears and I have to click the Button to display the grid again. When I do, the grid is displayed in the order of the column I clicked.

I don't understand why the GridView is disappearing when I click a column header.

Does anyone know how to fix this so the GridView is sorted and displayed only by clicking the column header?

ASPX:

[Code]....

Code behind:

[Code]....

View 9 Replies

Forms Data Controls :: Gridview Column Formatting Depending On Text In Header?

Mar 30, 2010

I want if the header of a particular column contains a word "S", the header and row turns red. I used following code to make header red and it works fine. How to make it such that the rows also turn red if condition is met ? I cannot hardcode in columns since the Gridview is autogenerate colums as data structure keeps changing.

Protected Sub GridView1_DataBound(ByVal sender
As
Object,
ByVal e
As System.EventArgs)Dim HeaderRow
As GridViewRow = GridView1.HeaderRowFor
Each c
As TableCell
In HeaderRow.CellsIf c.Text.EndsWith("S")
Then
c.BackColor = Drawing.Color.OrangeRed
End
If
Next
End
Sub

View 2 Replies

Forms Data Controls :: Div Collapses Every Time Click On GridView's Sort Column Header?

Feb 8, 2010

I have several grid views indide div's, and when I click the Sort header on an open div the div collapses and no sort happens. I believe it is just reloading the entire page but when I surround PageLoad with !ISPostBack then the page redraws as blank. Since the sort script is generated by the GV, I don't know how to stop it from creating side effects.

Here's my code:

<script type="text/javascript" language="javascript">
function toggleDisplay(id) {
var obj = document.getElementById(id);
obj.style.display = (obj.style.display == "none") ? "" : "none";
return false; // cancel the href
}
</script>

[Code]....

View 6 Replies







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