473,472 Members | 2,139 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

GridView generated programmatically

<asp:GridView ID="Basic" runat="server"
DataKeyNames="QuestionID,isHeading" AutoGenerateColumns="false"
AllowPaging="true" PageSize="100">
<Columns>
<asp:BoundField Visible="false" DataField="QuestionID"
HeaderText="QuestionID"></asp:BoundField>
<asp:BoundField DataField="QuestionDesc"
HeaderText="Question"
ItemStyle-HorizontalAlign="Left"></
asp:BoundField>
<asp:TemplateField HeaderText="Answer">
<ItemTemplate>
<asp:RadioButtonList
RepeatDirection="Horizontal" runat="server"
ID="rdAnswer" SelectedIndex='<%#
SetState(DataBinder.Eval
(Container.DataItem,"Answer"))%>'>
<asp:ListItem Value="0">Yes</
asp:ListItem>
<asp:ListItem Value="1">No</
asp:ListItem>
</asp:RadioButtonList>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>

Hello,

I need to create a gridview programmatically in code that would be
similar to the above code (in design mode).\

Any pointers?

Thanks,

Mar 28 '07 #1
5 23600
Someones already done it for you.
http://forums.asp.net/thread/1379019.aspx

Not sure why you wouldn't just use a templated gridview though!

Regards

John Timney (MVP)
http://www.johntimney.com
http://www.johntimney.com/blog
"NKaufman" <na****@hotmail.comwrote in message
news:11*********************@o5g2000hsb.googlegrou ps.com...
<asp:GridView ID="Basic" runat="server"
DataKeyNames="QuestionID,isHeading" AutoGenerateColumns="false"
AllowPaging="true" PageSize="100">
<Columns>
<asp:BoundField Visible="false" DataField="QuestionID"
HeaderText="QuestionID"></asp:BoundField>
<asp:BoundField DataField="QuestionDesc"
HeaderText="Question"
ItemStyle-HorizontalAlign="Left"></
asp:BoundField>
<asp:TemplateField HeaderText="Answer">
<ItemTemplate>
<asp:RadioButtonList
RepeatDirection="Horizontal" runat="server"
ID="rdAnswer" SelectedIndex='<%#
SetState(DataBinder.Eval
(Container.DataItem,"Answer"))%>'>
<asp:ListItem Value="0">Yes</
asp:ListItem>
<asp:ListItem Value="1">No</
asp:ListItem>
</asp:RadioButtonList>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>

Hello,

I need to create a gridview programmatically in code that would be
similar to the above code (in design mode).\

Any pointers?

Thanks,

Mar 28 '07 #2
Hello John,

Following are some of the issues in the example you cited:
(1) All columns of datatable will be displayed. In my case, I need
some columns to be visible and some are not.
(2) Does not handle DataKeys that I need
(3) Does not handle adding a control like the radiobuttonlist that I
need

In a post from the same thread - "why not a basic gridview? .....
since one your example you are not doing additional formatting to the
data other than creating bound columns."

Thanks for you assistance.
On Mar 28, 4:09 pm, "John Timney \(MVP\)"
<x_j...@timney.eclipse.co.ukwrote:
Someones already done it for you.http://forums.asp.net/thread/1379019.aspx

Not sure why you wouldn't just use a templated gridview though!

Regards

John Timney (MVP)http://www.johntimney.comhttp://www.johntimney.com/blog
Mar 28 '07 #3
I didn't think the example gave you a perfect solution, only that it would
give you an idea of how to create a datagrid dynamically.

If you use a template against a gridview then you can BIND and EVAL against
any of the datatable values and structure your output as you need it,

Regards

John Timney (MVP)
http://www.johntimney.com
http://www.johntimney.com/blog
"NKaufman" <na****@hotmail.comwrote in message
news:11**********************@y80g2000hsf.googlegr oups.com...
Hello John,

Following are some of the issues in the example you cited:
(1) All columns of datatable will be displayed. In my case, I need
some columns to be visible and some are not.
(2) Does not handle DataKeys that I need
(3) Does not handle adding a control like the radiobuttonlist that I
need

In a post from the same thread - "why not a basic gridview? .....
since one your example you are not doing additional formatting to the
data other than creating bound columns."

Thanks for you assistance.
On Mar 28, 4:09 pm, "John Timney \(MVP\)"
<x_j...@timney.eclipse.co.ukwrote:
>Someones already done it for
you.http://forums.asp.net/thread/1379019.aspx

Not sure why you wouldn't just use a templated gridview though!

Regards

John Timney (MVP)http://www.johntimney.comhttp://www.johntimney.com/blog

Mar 28 '07 #4

Hi,

To generate a gridView programmatically, you need to create a GridView
object and assign the properties that you had mentioned.
BoundField objects can be created and added to the gridview object.
Problem comes only when you need to add an ItemTemplate column. I tried a
sample code for the exact same gridView code that you had posted.

//My sample datatable which i am using to bind to the grid view.
DataTable dtSource = new DataTable();
dtSource.Columns.Add("QuestionID");
dtSource.Columns.Add("QuestionDesc");
dtSource.Columns.Add("Answer");
dtSource.Columns.Add("isHeading");

DataRow dr = dtSource.NewRow();
dr[0] = "Q1";
dr[1] = "I like reading books ";
dr[2] = "1";
dr[3] = "true";
dtSource.Rows.Add(dr);

dr = dtSource.NewRow();
dr[0] = "Q2";
dr[1] = "I watch a lot of TV";
dr[2] = "0";
dr[3] = "false";
dtSource.Rows.Add(dr);
//Creating a gridView

GridView gvBasic = new GridView();

gvBasic.DataKeyNames="QuestionID,isHeading".Split( ",".ToCharArray());
gvBasic.AutoGenerateColumns = false;
gvBasic.AllowPaging = true;
gvBasic.PageSize = 100;
gvBasic.DataSource = dtSource;

//Your column 1 that is hidden

BoundField objCol1 = new BoundField();
objCol1.Visible= false;
objCol1.DataField = "QuestionID";
objCol1.HeaderText = "QuestionID";
gvBasic.Columns.Add(objCol1);

//Your column 2 that has the questions

BoundField objCol2 = new BoundField();
objCol2.DataField = "QuestionDesc";
objCol2.HeaderText = "Question";
objCol2.ItemStyle.HorizontalAlign = HorizontalAlign.Left;
gvBasic.Columns.Add(objCol2);

//ItemTemplate is an Interface in dotnet and hence,
//Create an ItemTemplate class which implements the interface.

// Your column three which has the radiobuttonList on it

TemplateField objCol3 = new TemplateField();
objCol3.HeaderText = "Answer";
ItemTemplate objTemplate = new ItemTemplate("rdAnswer", dtSource);
objCol3.ItemTemplate = objTemplate;

gvBasic.Columns.Add(objCol3);

gvBasic.DataBind();
Page.Form.Controls.Add(gvBasic);

Code for the ItemTemplate class:
public class ItemTemplate : ITemplate
{

string ControlName = "";
object DataSource = null;

//ControlName: Name of the radio button list.
// DataSource is the datatable to which the gridview is bound to.

public ItemTemplate(string ControlName,object DataSource)
{
this.ControlName = ControlName;
this.DataSource = DataSource;
}
public void InstantiateIn(Control objContainer)
{
RadioButtonList rdAnswer = new RadioButtonList();
rdAnswer.ID = this.ControlName;

//An event is added to traverse every row that is bound to the
//gridview to fetch the answer column.

rdAnswer.DataBinding += new EventHandler(this.OnDataBinding);
ListItem lst1 = new ListItem("Yes","0");
ListItem lst2 = new ListItem("No","1");
rdAnswer.Items.Add(lst1);
rdAnswer.Items.Add(lst2);
objContainer.Controls.Add(rdAnswer);

}

public void OnDataBinding(object sender, EventArgs e)
{
RadioButtonList rdAnswer = (RadioButtonList)sender;
GridViewRow container = (GridViewRow)rdAnswer.NamingContainer;

//Setting the value of the selected index - This is the replacement for the
eval.

rdAnswer.SelectedIndex =
int.Parse(((DataRowView)container.DataItem).Row.It emArray[2].ToString());

}

}

I guess you shd be all set with this code sample above.

- Parvathy Padmanabhan
Mar 30 '07 #5
Parvathy,

Excellent. I will try this and let you know.
Thanks,

On Mar 30, 6:46 pm, Parvathy Padmanabhan
<ParvathyPadmanab...@discussions.microsoft.comwrot e:
Hi,

To generate a gridView programmatically, you need to create a GridView
object and assign the properties that you had mentioned.
BoundField objects can be created and added to the gridview object.
Problem comes only when you need to add an ItemTemplate column. I tried a
sample code for the exact same gridView code that you had posted.

//My sample datatable which i am using to bind to the grid view.
DataTable dtSource = new DataTable();
dtSource.Columns.Add("QuestionID");
dtSource.Columns.Add("QuestionDesc");
dtSource.Columns.Add("Answer");
dtSource.Columns.Add("isHeading");

DataRow dr = dtSource.NewRow();
dr[0] = "Q1";
dr[1] = "I like reading books ";
dr[2] = "1";
dr[3] = "true";
dtSource.Rows.Add(dr);

dr = dtSource.NewRow();
dr[0] = "Q2";
dr[1] = "I watch a lot of TV";
dr[2] = "0";
dr[3] = "false";
dtSource.Rows.Add(dr);

//Creating a gridView

GridView gvBasic = new GridView();

gvBasic.DataKeyNames="QuestionID,isHeading".Split( ",".ToCharArray());
gvBasic.AutoGenerateColumns = false;
gvBasic.AllowPaging = true;
gvBasic.PageSize = 100;
gvBasic.DataSource = dtSource;

//Your column 1 that is hidden

BoundField objCol1 = new BoundField();
objCol1.Visible= false;
objCol1.DataField = "QuestionID";
objCol1.HeaderText = "QuestionID";
gvBasic.Columns.Add(objCol1);

//Your column 2 that has the questions

BoundField objCol2 = new BoundField();
objCol2.DataField = "QuestionDesc";
objCol2.HeaderText = "Question";
objCol2.ItemStyle.HorizontalAlign = HorizontalAlign.Left;
gvBasic.Columns.Add(objCol2);

//ItemTemplate is an Interface in dotnet and hence,
//Create an ItemTemplate class which implements the interface.

// Your column three which has the radiobuttonList on it

TemplateField objCol3 = new TemplateField();
objCol3.HeaderText = "Answer";
ItemTemplate objTemplate = new ItemTemplate("rdAnswer", dtSource);
objCol3.ItemTemplate = objTemplate;

gvBasic.Columns.Add(objCol3);

gvBasic.DataBind();
Page.Form.Controls.Add(gvBasic);

Code for the ItemTemplate class:

public class ItemTemplate : ITemplate
{

string ControlName = "";
object DataSource = null;

//ControlName: Name of the radio button list.
// DataSource is the datatable to which the gridview is bound to.

public ItemTemplate(string ControlName,object DataSource)
{
this.ControlName = ControlName;
this.DataSource = DataSource;
}

public void InstantiateIn(Control objContainer)
{
RadioButtonList rdAnswer = new RadioButtonList();
rdAnswer.ID = this.ControlName;

//An event is added to traverse every row that is bound to the
//gridview to fetch the answer column.

rdAnswer.DataBinding += new EventHandler(this.OnDataBinding);
ListItem lst1 = new ListItem("Yes","0");
ListItem lst2 = new ListItem("No","1");
rdAnswer.Items.Add(lst1);
rdAnswer.Items.Add(lst2);
objContainer.Controls.Add(rdAnswer);

}

public void OnDataBinding(object sender, EventArgs e)
{
RadioButtonList rdAnswer = (RadioButtonList)sender;
GridViewRow container = (GridViewRow)rdAnswer.NamingContainer;

//Setting the value of the selected index - This is the replacement for the
eval.

rdAnswer.SelectedIndex =
int.Parse(((DataRowView)container.DataItem).Row.It emArray[2].ToString());

}

}

I guess you shd be all set with this code sample above.

- Parvathy Padmanabhan

Apr 3 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: | last post by:
I'm wondering if it's possible, outside of the declaration of an ASP.NET 2.0 GridView, to programmatically style individual columns. For example, I might want to make the text in a particular...
5
by: Brian McClellan | last post by:
Just wondering if anyone has a simple example of creating a gridview completely programmatically, i'm not doing anything terribly sophisticated. When creating the gridview declaratively evertying...
0
by: Chris | last post by:
Hi, Can I add a new row to gridview programmatically, similar to ADD method of listbox ? Thanks a lot in advance.
1
by: pApAk | last post by:
Hi, i am working at .NET Web-Application (c# codebehind) and i have placed on my web-site a GridView, aka DataGrid (that works as Server control). This GridView generated following code in...
2
by: Philip | last post by:
I can use a GridView and ObjectDataSource to bind my data using "Eval" expressions ... provided the GridView and related Column TemplateFields are defined as inline HTML. I prefer to...
0
by: cook.jonathan.m | last post by:
I want to programmatically add a dropdown to each row in a certain column returned to the gridview by my query. I want to do this entirely in behind-code. My gridview tag in the page will have...
4
by: Tomasz | last post by:
Hello Developers, Here is interesting problem I just came across: how do I wire a GridView control programmatically? Here is my sample code using Object Data Source: protected void...
0
by: Don Miller | last post by:
Without a SQLDataSource declaratively linked to a GridView, I programmatically create a dataset and bind it to a GridView with EnableSortingAndPagingCallbacks=True and Paging=True. The GridView...
3
by: =?Utf-8?B?QW5nZWw=?= | last post by:
I seem to understand how the control works as long as I mated to SqlDataSource or ObjDataSource it works fine. But I do not want to flatten my design in this manner. I am interested in how I can...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.