SlideShare a Scribd company logo
1 of 3
Download to read offline
8/31/15 | Code Bloger
codebloger.blogspot.in/2012/02/creating-template-columns.html 1/3
Home
Wednesday, February 22, 2012
Creating template columns programmatically for Telerik Rad
Grid
protected void Page_Init(object sender, EventArgs e)
{
RadGrid grid = new RadGrid();
grid.AutoGenerateColumns = false;
grid.DataSourceID = "SqlDataSource1";
string templateColumnName = "ContactName";
GridTemplateColumn templateColumn = new GridTemplateColumn();
templateColumn.ItemTemplate = new MyTemplate(templateColumnName);
templateColumn.HeaderText = templateColumnName;
GridBoundColumn boundColumn1 = new GridBoundColumn();
boundColumn1.DataField = "ContactName";
boundColumn1.UniqueName = "ConactName";
boundColumn1.HeaderText = "Bound Column";
grid.MasterTableView.Columns.Add(templateColumn);
grid.MasterTableView.Columns.Add(boundColumn1);
grid.AllowPaging = true;
grid.PageSize = 3;
grid.Skin = "Outlook";
PlaceHolder1.Controls.Add(grid);
}
private class MyTemplate : ITemplate
{
protected LiteralControl lControl;
protected RequiredFieldValidator validatorTextBox;
protected HyperLink searchGoogle;
protected TextBox textBox;
protected CheckBox boolValue;
private string colname;
public MyTemplate(string cName)
{
colname = cName;
}
public void InstantiateIn(System.Web.UI.Control container)
{
lControl = new LiteralControl();
lControl.ID = "lControl";
lControl.DataBinding += new EventHandler(lControl_DataBinding);
textBox = new TextBox();
textBox.ID = "templateColumnTextBox";
validatorTextBox = new RequiredFieldValidator();
validatorTextBox.ControlToValidate = "templateColumnTextBox";
validatorTextBox.ErrorMessage = "*";
searchGoogle = new HyperLink();
searchGoogle.ID = "searchGoogle";
searchGoogle.DataBinding += new EventHandler(searchGoogle_DataBinding);
boolValue = new CheckBox();
About Me
A LEX BROW N
Expert in C#, .NET, and T-SQL
with database analysis and
design and having more then 6
years of experience in Microsoft.NET
Technology.
Popular Posts
Creating template columns programmatically for
Telerik Rad Grid
ASP.NET Multiple File Upload With Drag & Drop
and Progress Bar Using HTML5
Ajax Enabled Popup Message Box in C#
set selected value after jQuery populated
Dropdownlist
Laptop Battery Full Charge Notification
jQuery methods and UpdatePanel
iPhone 5
Convert Generic List to DataTable
Pivot tables in SQL Server
Gets Fast Visual Studio 2010
Latest Technology News
Ashley Madison site 'still growing'
Facebook tool to tackle video theft
ICYMI: Gunshot broadcast live online
Are we addicted to technology?
VIDEO: Boeing laser shoots drone from sky
Blog Archive
▼ 2012 (14)
► September (4)
► August (1)
► July (3)
► May (2)
▼ February (4)
Tags
Asp.Net
(8) C# (3)
Jquery (4)
Visual Studio (4)
CO DE BLO G ER
/*First, solve the problem. Then, write the code*/
Ajax (1)
HTML5
(1) JavaScript (2)
RadGrid
(2) SQL (2) VB.NET (1)
8/31/15 | Code Bloger
codebloger.blogspot.in/2012/02/creating-template-columns.html 2/3
boolValue.ID = "boolValue";
boolValue.DataBinding += new EventHandler(boolValue_DataBinding);
boolValue.Enabled = false;
Table table = new Table();
TableRow row1 = new TableRow();
TableRow row2 = new TableRow();
TableCell cell11 = new TableCell();
TableCell cell12 = new TableCell();
TableCell cell21 = new TableCell();
TableCell cell22 = new TableCell();
row1.Cells.Add(cell11);
row1.Cells.Add(cell12);
row2.Cells.Add(cell21);
row2.Cells.Add(cell22);
table.Rows.Add(row1);
table.Rows.Add(row2);
cell11.Text = colname + ": ";
cell12.Controls.Add(lControl);
cell21.Text = "Search Google for: ";
cell22.Controls.Add(searchGoogle);
container.Controls.Add(textBox);
container.Controls.Add(validatorTextBox);
container.Controls.Add(table);
container.Controls.Add(new LiteralControl("
"));
container.Controls.Add(boolValue);
}
void boolValue_DataBinding(object sender, EventArgs e)
{
CheckBox cBox = (CheckBox)sender;
GridDataItem container = (GridDataItem)cBox.NamingContainer;
cBox.Checked = (bool)((DataRowView)container.DataItem)["Bool"];
}
void searchGoogle_DataBinding(object sender, EventArgs e)
{
HyperLink link = (HyperLink)sender;
GridDataItem container = (GridDataItem)link.NamingContainer;
link.Text = ((DataRowView)container.DataItem)[colname].ToString();
link.NavigateUrl = "http://www.google.com/search?hl=en&q=" + ((DataRowView)cont
ainer.DataItem)["ContactName"].ToString() + "&btnG=Google+Search";
}
public void lControl_DataBinding(object sender, EventArgs e)
{
LiteralControl l = (LiteralControl)sender;
GridDataItem container = (GridDataItem)l.NamingContainer;
l.Text = ((DataRowView)container.DataItem)[colname].ToString() + "
";
}
}
The code above result in the following grid:
Pivot tables in SQL
Server
Creating template
columns
programmatically
for Tel...
set selected value
after jQuery
populated
Dropdown...
jQuery methods
and
UpdatePanel
Who are visited
Live Traffic Feed
Real-time view · Get Feedjit
A visitor from Chennai, Tamil
Nadu viewed "| Code Bloger" 3
mins ago
A visitor from Bangalore,
Karnataka viewed "| Code Bloger"
6 hrs 37 mins ago
A visitor from Ahmedabad,
Gujarat viewed "| Code Bloger" 3
days 4 hours ago
A visitor from France viewed "|
Code Bloger" 3 days 5 hours ago
A visitor from Columbus, Ohio
viewed "| Code Bloger" 3 days 23
hours ago
A visitor from Manila viewed "|
Code Bloger" 4 days 5 hours ago
A visitor from Round Rock, Texas
viewed "| Code Bloger" 4 days 6
hours ago
A visitor from Lima viewed "|
Code Bloger" 4 days 11 hours ago
A visitor from Fremont, California
viewed "| Code Bloger" 4 days 17
hours ago
A visitor from Minneapolis,
Minnesota viewed "| Code Bloger"
4 days 18 hours ago
8/31/15 | Code Bloger
codebloger.blogspot.in/2012/02/creating-template-columns.html 3/3
Newer Post Older Post
Labels: Asp.Net, RadGrid
No comments:
Post a Comment
Enter your comment...
Comment as: Google Account
Publish Preview
Home
Copyright (c) 2011 Code Bloger. Designed by Simple Blogger templates
Investment, skin tags, Marriage stock photography

More Related Content

Viewers also liked (13)

Cdn tutorial adcom
Cdn tutorial adcomCdn tutorial adcom
Cdn tutorial adcom
 
Schemas and soap_prt
Schemas and soap_prtSchemas and soap_prt
Schemas and soap_prt
 
sample tutorial
 sample tutorial  sample tutorial
sample tutorial
 
Android examples
Android examplesAndroid examples
Android examples
 
Android tutorial
Android tutorialAndroid tutorial
Android tutorial
 
Create link button in radgrid dynamically without item template tags in aspx ...
Create link button in radgrid dynamically without item template tags in aspx ...Create link button in radgrid dynamically without item template tags in aspx ...
Create link button in radgrid dynamically without item template tags in aspx ...
 
Tutorial 1
Tutorial 1Tutorial 1
Tutorial 1
 
Cdn
CdnCdn
Cdn
 
Dynamically define rad grid using code behind in c# grid - ui for asp
Dynamically define rad grid using code behind in c#   grid - ui for aspDynamically define rad grid using code behind in c#   grid - ui for asp
Dynamically define rad grid using code behind in c# grid - ui for asp
 
Walkthrough asp.net
Walkthrough asp.netWalkthrough asp.net
Walkthrough asp.net
 
Sq lite manager
Sq lite managerSq lite manager
Sq lite manager
 
00016335
0001633500016335
00016335
 
Jaxrs 1.0-final-spec
Jaxrs 1.0-final-specJaxrs 1.0-final-spec
Jaxrs 1.0-final-spec
 

Similar to Radgrid

New text document
New text documentNew text document
New text documentTam Ngo
 
SQL 🌟🌟🔥.pdf
SQL 🌟🌟🔥.pdfSQL 🌟🌟🔥.pdf
SQL 🌟🌟🔥.pdfLightWolf2
 
SQL learning notes and all code.pdf
SQL learning notes and all code.pdfSQL learning notes and all code.pdf
SQL learning notes and all code.pdf79TarannumMulla
 
Cheat sheet SQL commands with examples and easy understanding
Cheat sheet SQL commands with examples and easy understandingCheat sheet SQL commands with examples and easy understanding
Cheat sheet SQL commands with examples and easy understandingVivekanandaGN1
 
PROGRAMMING USING C# .NET - SARASWATHI RAMALINGAM
PROGRAMMING USING C# .NET - SARASWATHI RAMALINGAMPROGRAMMING USING C# .NET - SARASWATHI RAMALINGAM
PROGRAMMING USING C# .NET - SARASWATHI RAMALINGAMSaraswathiRamalingam
 
bai giai de LTWINForm.docx
bai giai de LTWINForm.docxbai giai de LTWINForm.docx
bai giai de LTWINForm.docxVnThanh292761
 
Accessing data with android cursors
Accessing data with android cursorsAccessing data with android cursors
Accessing data with android cursorsinfo_zybotech
 
Accessing data with android cursors
Accessing data with android cursorsAccessing data with android cursors
Accessing data with android cursorsinfo_zybotech
 
INSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVER
INSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVERINSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVER
INSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVERDarwin Durand
 
Rad grid dynamically building a grid and adding a hierarchy with declarative...
Rad grid  dynamically building a grid and adding a hierarchy with declarative...Rad grid  dynamically building a grid and adding a hierarchy with declarative...
Rad grid dynamically building a grid and adding a hierarchy with declarative...Aravindharamanan S
 

Similar to Radgrid (20)

New text document
New text documentNew text document
New text document
 
Insertarbotones en c
Insertarbotones en cInsertarbotones en c
Insertarbotones en c
 
1670595076250.pdf
1670595076250.pdf1670595076250.pdf
1670595076250.pdf
 
SQL 🌟🌟🔥.pdf
SQL 🌟🌟🔥.pdfSQL 🌟🌟🔥.pdf
SQL 🌟🌟🔥.pdf
 
SQL learning notes and all code.pdf
SQL learning notes and all code.pdfSQL learning notes and all code.pdf
SQL learning notes and all code.pdf
 
Cheat sheet SQL commands with examples and easy understanding
Cheat sheet SQL commands with examples and easy understandingCheat sheet SQL commands with examples and easy understanding
Cheat sheet SQL commands with examples and easy understanding
 
PROGRAMMING USING C# .NET - SARASWATHI RAMALINGAM
PROGRAMMING USING C# .NET - SARASWATHI RAMALINGAMPROGRAMMING USING C# .NET - SARASWATHI RAMALINGAM
PROGRAMMING USING C# .NET - SARASWATHI RAMALINGAM
 
bai giai de LTWINForm.docx
bai giai de LTWINForm.docxbai giai de LTWINForm.docx
bai giai de LTWINForm.docx
 
Accessing data with android cursors
Accessing data with android cursorsAccessing data with android cursors
Accessing data with android cursors
 
Accessing data with android cursors
Accessing data with android cursorsAccessing data with android cursors
Accessing data with android cursors
 
Fetch data from form
Fetch data from formFetch data from form
Fetch data from form
 
Soa lab
Soa lab   Soa lab
Soa lab
 
37c
37c37c
37c
 
Codeofdatabase
CodeofdatabaseCodeofdatabase
Codeofdatabase
 
Quanlycanbo
QuanlycanboQuanlycanbo
Quanlycanbo
 
INSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVER
INSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVERINSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVER
INSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVER
 
Database c# connetion
Database c# connetionDatabase c# connetion
Database c# connetion
 
Exceptional exceptions
Exceptional exceptionsExceptional exceptions
Exceptional exceptions
 
Rad grid dynamically building a grid and adding a hierarchy with declarative...
Rad grid  dynamically building a grid and adding a hierarchy with declarative...Rad grid  dynamically building a grid and adding a hierarchy with declarative...
Rad grid dynamically building a grid and adding a hierarchy with declarative...
 
KMI System
KMI SystemKMI System
KMI System
 

Recently uploaded

内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士obuhobo
 
VIP Kolkata Call Girl Lake Gardens 👉 8250192130 Available With Room
VIP Kolkata Call Girl Lake Gardens 👉 8250192130  Available With RoomVIP Kolkata Call Girl Lake Gardens 👉 8250192130  Available With Room
VIP Kolkata Call Girl Lake Gardens 👉 8250192130 Available With Roomdivyansh0kumar0
 
Call Girls Mukherjee Nagar Delhi reach out to us at ☎ 9711199012
Call Girls Mukherjee Nagar Delhi reach out to us at ☎ 9711199012Call Girls Mukherjee Nagar Delhi reach out to us at ☎ 9711199012
Call Girls Mukherjee Nagar Delhi reach out to us at ☎ 9711199012rehmti665
 
定制(NYIT毕业证书)美国纽约理工学院毕业证成绩单原版一比一
定制(NYIT毕业证书)美国纽约理工学院毕业证成绩单原版一比一定制(NYIT毕业证书)美国纽约理工学院毕业证成绩单原版一比一
定制(NYIT毕业证书)美国纽约理工学院毕业证成绩单原版一比一2s3dgmej
 
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service CuttackVIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service CuttackSuhani Kapoor
 
VIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service Bhiwandi
VIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service BhiwandiVIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service Bhiwandi
VIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service BhiwandiSuhani Kapoor
 
do's and don'ts in Telephone Interview of Job
do's and don'ts in Telephone Interview of Jobdo's and don'ts in Telephone Interview of Job
do's and don'ts in Telephone Interview of JobRemote DBA Services
 
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service BhilaiVIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service BhilaiSuhani Kapoor
 
Preventing and ending sexual harassment in the workplace.pptx
Preventing and ending sexual harassment in the workplace.pptxPreventing and ending sexual harassment in the workplace.pptx
Preventing and ending sexual harassment in the workplace.pptxGry Tina Tinde
 
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...Suhani Kapoor
 
Ioannis Tzachristas Self-Presentation for MBA.pdf
Ioannis Tzachristas Self-Presentation for MBA.pdfIoannis Tzachristas Self-Presentation for MBA.pdf
Ioannis Tzachristas Self-Presentation for MBA.pdfjtzach
 
定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一
 定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一 定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一
定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一Fs sss
 
Call Girl in Low Price Delhi Punjabi Bagh 9711199012
Call Girl in Low Price Delhi Punjabi Bagh  9711199012Call Girl in Low Price Delhi Punjabi Bagh  9711199012
Call Girl in Low Price Delhi Punjabi Bagh 9711199012sapnasaifi408
 
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service CuttackVIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service CuttackSuhani Kapoor
 
NPPE STUDY GUIDE - NOV2021_study_104040.pdf
NPPE STUDY GUIDE - NOV2021_study_104040.pdfNPPE STUDY GUIDE - NOV2021_study_104040.pdf
NPPE STUDY GUIDE - NOV2021_study_104040.pdfDivyeshPatel234692
 
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...Suhani Kapoor
 
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...Suhani Kapoor
 
CFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector ExperienceCFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector ExperienceSanjay Bokadia
 
加利福尼亚艺术学院毕业证文凭证书( 咨询 )证书双学位
加利福尼亚艺术学院毕业证文凭证书( 咨询 )证书双学位加利福尼亚艺术学院毕业证文凭证书( 咨询 )证书双学位
加利福尼亚艺术学院毕业证文凭证书( 咨询 )证书双学位obuhobo
 

Recently uploaded (20)

内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
 
VIP Kolkata Call Girl Lake Gardens 👉 8250192130 Available With Room
VIP Kolkata Call Girl Lake Gardens 👉 8250192130  Available With RoomVIP Kolkata Call Girl Lake Gardens 👉 8250192130  Available With Room
VIP Kolkata Call Girl Lake Gardens 👉 8250192130 Available With Room
 
Call Girls Mukherjee Nagar Delhi reach out to us at ☎ 9711199012
Call Girls Mukherjee Nagar Delhi reach out to us at ☎ 9711199012Call Girls Mukherjee Nagar Delhi reach out to us at ☎ 9711199012
Call Girls Mukherjee Nagar Delhi reach out to us at ☎ 9711199012
 
定制(NYIT毕业证书)美国纽约理工学院毕业证成绩单原版一比一
定制(NYIT毕业证书)美国纽约理工学院毕业证成绩单原版一比一定制(NYIT毕业证书)美国纽约理工学院毕业证成绩单原版一比一
定制(NYIT毕业证书)美国纽约理工学院毕业证成绩单原版一比一
 
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service CuttackVIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
 
VIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service Bhiwandi
VIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service BhiwandiVIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service Bhiwandi
VIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service Bhiwandi
 
do's and don'ts in Telephone Interview of Job
do's and don'ts in Telephone Interview of Jobdo's and don'ts in Telephone Interview of Job
do's and don'ts in Telephone Interview of Job
 
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service BhilaiVIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
 
Preventing and ending sexual harassment in the workplace.pptx
Preventing and ending sexual harassment in the workplace.pptxPreventing and ending sexual harassment in the workplace.pptx
Preventing and ending sexual harassment in the workplace.pptx
 
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
 
Ioannis Tzachristas Self-Presentation for MBA.pdf
Ioannis Tzachristas Self-Presentation for MBA.pdfIoannis Tzachristas Self-Presentation for MBA.pdf
Ioannis Tzachristas Self-Presentation for MBA.pdf
 
定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一
 定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一 定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一
定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一
 
Call Girl in Low Price Delhi Punjabi Bagh 9711199012
Call Girl in Low Price Delhi Punjabi Bagh  9711199012Call Girl in Low Price Delhi Punjabi Bagh  9711199012
Call Girl in Low Price Delhi Punjabi Bagh 9711199012
 
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service CuttackVIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
 
NPPE STUDY GUIDE - NOV2021_study_104040.pdf
NPPE STUDY GUIDE - NOV2021_study_104040.pdfNPPE STUDY GUIDE - NOV2021_study_104040.pdf
NPPE STUDY GUIDE - NOV2021_study_104040.pdf
 
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
 
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
 
FULL ENJOY Call Girls In Gautam Nagar (Delhi) Call Us 9953056974
FULL ENJOY Call Girls In Gautam Nagar (Delhi) Call Us 9953056974FULL ENJOY Call Girls In Gautam Nagar (Delhi) Call Us 9953056974
FULL ENJOY Call Girls In Gautam Nagar (Delhi) Call Us 9953056974
 
CFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector ExperienceCFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector Experience
 
加利福尼亚艺术学院毕业证文凭证书( 咨询 )证书双学位
加利福尼亚艺术学院毕业证文凭证书( 咨询 )证书双学位加利福尼亚艺术学院毕业证文凭证书( 咨询 )证书双学位
加利福尼亚艺术学院毕业证文凭证书( 咨询 )证书双学位
 

Radgrid

  • 1. 8/31/15 | Code Bloger codebloger.blogspot.in/2012/02/creating-template-columns.html 1/3 Home Wednesday, February 22, 2012 Creating template columns programmatically for Telerik Rad Grid protected void Page_Init(object sender, EventArgs e) { RadGrid grid = new RadGrid(); grid.AutoGenerateColumns = false; grid.DataSourceID = "SqlDataSource1"; string templateColumnName = "ContactName"; GridTemplateColumn templateColumn = new GridTemplateColumn(); templateColumn.ItemTemplate = new MyTemplate(templateColumnName); templateColumn.HeaderText = templateColumnName; GridBoundColumn boundColumn1 = new GridBoundColumn(); boundColumn1.DataField = "ContactName"; boundColumn1.UniqueName = "ConactName"; boundColumn1.HeaderText = "Bound Column"; grid.MasterTableView.Columns.Add(templateColumn); grid.MasterTableView.Columns.Add(boundColumn1); grid.AllowPaging = true; grid.PageSize = 3; grid.Skin = "Outlook"; PlaceHolder1.Controls.Add(grid); } private class MyTemplate : ITemplate { protected LiteralControl lControl; protected RequiredFieldValidator validatorTextBox; protected HyperLink searchGoogle; protected TextBox textBox; protected CheckBox boolValue; private string colname; public MyTemplate(string cName) { colname = cName; } public void InstantiateIn(System.Web.UI.Control container) { lControl = new LiteralControl(); lControl.ID = "lControl"; lControl.DataBinding += new EventHandler(lControl_DataBinding); textBox = new TextBox(); textBox.ID = "templateColumnTextBox"; validatorTextBox = new RequiredFieldValidator(); validatorTextBox.ControlToValidate = "templateColumnTextBox"; validatorTextBox.ErrorMessage = "*"; searchGoogle = new HyperLink(); searchGoogle.ID = "searchGoogle"; searchGoogle.DataBinding += new EventHandler(searchGoogle_DataBinding); boolValue = new CheckBox(); About Me A LEX BROW N Expert in C#, .NET, and T-SQL with database analysis and design and having more then 6 years of experience in Microsoft.NET Technology. Popular Posts Creating template columns programmatically for Telerik Rad Grid ASP.NET Multiple File Upload With Drag & Drop and Progress Bar Using HTML5 Ajax Enabled Popup Message Box in C# set selected value after jQuery populated Dropdownlist Laptop Battery Full Charge Notification jQuery methods and UpdatePanel iPhone 5 Convert Generic List to DataTable Pivot tables in SQL Server Gets Fast Visual Studio 2010 Latest Technology News Ashley Madison site 'still growing' Facebook tool to tackle video theft ICYMI: Gunshot broadcast live online Are we addicted to technology? VIDEO: Boeing laser shoots drone from sky Blog Archive ▼ 2012 (14) ► September (4) ► August (1) ► July (3) ► May (2) ▼ February (4) Tags Asp.Net (8) C# (3) Jquery (4) Visual Studio (4) CO DE BLO G ER /*First, solve the problem. Then, write the code*/ Ajax (1) HTML5 (1) JavaScript (2) RadGrid (2) SQL (2) VB.NET (1)
  • 2. 8/31/15 | Code Bloger codebloger.blogspot.in/2012/02/creating-template-columns.html 2/3 boolValue.ID = "boolValue"; boolValue.DataBinding += new EventHandler(boolValue_DataBinding); boolValue.Enabled = false; Table table = new Table(); TableRow row1 = new TableRow(); TableRow row2 = new TableRow(); TableCell cell11 = new TableCell(); TableCell cell12 = new TableCell(); TableCell cell21 = new TableCell(); TableCell cell22 = new TableCell(); row1.Cells.Add(cell11); row1.Cells.Add(cell12); row2.Cells.Add(cell21); row2.Cells.Add(cell22); table.Rows.Add(row1); table.Rows.Add(row2); cell11.Text = colname + ": "; cell12.Controls.Add(lControl); cell21.Text = "Search Google for: "; cell22.Controls.Add(searchGoogle); container.Controls.Add(textBox); container.Controls.Add(validatorTextBox); container.Controls.Add(table); container.Controls.Add(new LiteralControl(" ")); container.Controls.Add(boolValue); } void boolValue_DataBinding(object sender, EventArgs e) { CheckBox cBox = (CheckBox)sender; GridDataItem container = (GridDataItem)cBox.NamingContainer; cBox.Checked = (bool)((DataRowView)container.DataItem)["Bool"]; } void searchGoogle_DataBinding(object sender, EventArgs e) { HyperLink link = (HyperLink)sender; GridDataItem container = (GridDataItem)link.NamingContainer; link.Text = ((DataRowView)container.DataItem)[colname].ToString(); link.NavigateUrl = "http://www.google.com/search?hl=en&q=" + ((DataRowView)cont ainer.DataItem)["ContactName"].ToString() + "&btnG=Google+Search"; } public void lControl_DataBinding(object sender, EventArgs e) { LiteralControl l = (LiteralControl)sender; GridDataItem container = (GridDataItem)l.NamingContainer; l.Text = ((DataRowView)container.DataItem)[colname].ToString() + " "; } } The code above result in the following grid: Pivot tables in SQL Server Creating template columns programmatically for Tel... set selected value after jQuery populated Dropdown... jQuery methods and UpdatePanel Who are visited Live Traffic Feed Real-time view · Get Feedjit A visitor from Chennai, Tamil Nadu viewed "| Code Bloger" 3 mins ago A visitor from Bangalore, Karnataka viewed "| Code Bloger" 6 hrs 37 mins ago A visitor from Ahmedabad, Gujarat viewed "| Code Bloger" 3 days 4 hours ago A visitor from France viewed "| Code Bloger" 3 days 5 hours ago A visitor from Columbus, Ohio viewed "| Code Bloger" 3 days 23 hours ago A visitor from Manila viewed "| Code Bloger" 4 days 5 hours ago A visitor from Round Rock, Texas viewed "| Code Bloger" 4 days 6 hours ago A visitor from Lima viewed "| Code Bloger" 4 days 11 hours ago A visitor from Fremont, California viewed "| Code Bloger" 4 days 17 hours ago A visitor from Minneapolis, Minnesota viewed "| Code Bloger" 4 days 18 hours ago
  • 3. 8/31/15 | Code Bloger codebloger.blogspot.in/2012/02/creating-template-columns.html 3/3 Newer Post Older Post Labels: Asp.Net, RadGrid No comments: Post a Comment Enter your comment... Comment as: Google Account Publish Preview Home Copyright (c) 2011 Code Bloger. Designed by Simple Blogger templates Investment, skin tags, Marriage stock photography