SlideShare a Scribd company logo
1 of 8
Download to read offline
9/2/2015 Dynamically define Rad Grid using Code Behind in C# ­ Grid ­ UI for ASP.NET AJAX Forum
http://www.telerik.com/forums/dynamically­define­rad­grid­using­code­behind­in­c 1/8
DynamicallydefineRadGridusing
CodeBehindinC#
Resources Buy Try
Telerik Forums  /  UI for ASP.NET AJAX Forum  /  Grid  /
 
7 posts, 0 answers
UI for ASP.NET AJAXñAJAX
Post a reply ø Feed for this thread
 
Muhamma
d
4 posts
Member
since:
Dec 2013
Link to this postPosted 12 May 2014
I want to add Rad Grid Dynamically using Code Behind.with Dynamic
Columns 1 Columns should be Drop Down , 1 Column Should be Date picker,
1 Column Should be Text field.these Dynamic Columns should be Shown in
Edit mode when Edit button is Clicked.while Showing Data just Data should
be shown like data in label.
how can it be possible.
Reply
 
Princy
17421 posts
Member
since:
Mar 2007
Link to this postPosted 12 May 2014 in reply to Muhammad
Hi Muhammad,
You can have a GridTemplateColumn to achieve your requirement. To create
a template dynamically, you must define a custom class that implements
the ITemplate interface. Then you can assign an instance of this class to the
ItemTemplate or EditTemplate property of the GridTemplateColumn object.
Below is a sample code that shows how to have a DropDown in edit and label
in view mode, similarly you can create other columns.
ASPX:
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:PlaceHolder ID="PlaceHolder1" runat="server">
</asp:PlaceHolder>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="SELECT * FROM [Orders]"></asp:SqlDataSource>
9/2/2015 Dynamically define Rad Grid using Code Behind in C# ­ Grid ­ UI for ASP.NET AJAX Forum
http://www.telerik.com/forums/dynamically­define­rad­grid­using­code­behind­in­c 2/8
SelectCommand="SELECT * FROM [Orders]"></asp:SqlDataSource>
C#:
RadGrid RadGrid1; 
protected void Page_Init(object sender, EventArgs e)
{
     RadGrid1 = new RadGrid();
     RadGrid1.DataSourceID = "SqlDataSource1";
     RadGrid1.MasterTableView.DataKeyNames = new string[] {
"OrderID" };
     RadGrid1.AllowPaging = true;
     RadGrid1.AutoGenerateColumns = false; 
     RadGrid1.AutoGenerateEditColumn = true; 
     RadGrid1.ItemDataBound += new
GridItemEventHandler(RadGrid1_ItemDataBound);
 
     GridBoundColumn boundColumn1;
     boundColumn1 = new GridBoundColumn();
     boundColumn1.DataField = "OrderID";
     boundColumn1.HeaderText = "OrderID";
     boundColumn1.UniqueName = "OrderID";
     RadGrid1.MasterTableView.Columns.Add(boundColumn1);
 
     GridBoundColumn boundColumn2;
     boundColumn2 = new GridBoundColumn();
     boundColumn2.DataField = "ShipCity";
     boundColumn2.HeaderText = "ShipCity";
     boundColumn2.UniqueName = "ShipCity";
     RadGrid1.MasterTableView.Columns.Add(boundColumn2);
 
     string templateColumnName = "employeeid";
     GridTemplateColumn templateColumn = new
GridTemplateColumn();
     templateColumn.ItemTemplate = new
MyTemplate(templateColumnName);
     templateColumn.EditItemTemplate = new MyEditTemplate();
     templateColumn.HeaderText = templateColumnName;
     templateColumn.DataField = "EmployeeID";
     RadGrid1.MasterTableView.Columns.Add(templateColumn);
     PlaceHolder1.Controls.Add(RadGrid1);
}  
 
public class MyTemplate : ITemplate
{
     private string colname;
     protected Label lControl;
     public MyTemplate(string cName)
     {
         colname = cName;
     }
9/2/2015 Dynamically define Rad Grid using Code Behind in C# ­ Grid ­ UI for ASP.NET AJAX Forum
http://www.telerik.com/forums/dynamically­define­rad­grid­using­code­behind­in­c 3/8
     }
     public void InstantiateIn(System.Web.UI.Control container)
     {
         lControl = new Label();
         lControl.ID = "lControl";
         lControl.DataBinding += new
EventHandler(lControl_DataBinding);
         container.Controls.Add(lControl);
     }
 
     public void lControl_DataBinding(object sender, EventArgs
e)
     {
         Label l = (Label)sender;
         GridDataItem container =
(GridDataItem)l.NamingContainer;
         l.Text = ((DataRowView)container.DataItem)
[colname].ToString() + "<br />";
     }
}
 
public class MyEditTemplate : IBindableTemplate
{
     public void InstantiateIn(Control container)
     {
         GridEditFormItem item = ((GridEditFormItem)
(container.NamingContainer));
         DropDownList drop = new DropDownList();
         drop.ID = "dropdownlist1";
         container.Controls.Add(drop);
     }
     public System.Collections.Specialized.IOrderedDictionary
ExtractValues(System.Web.UI.Control container)
     {
         OrderedDictionary od = new OrderedDictionary();
         od.Add("OrderID", ((DropDownList)
(((GridEditFormItem)
(container)).FindControl("dropdownlist1"))).DataValueField);
         return od;
     }
}
 
protected void RadGrid1_ItemDataBound(object sender,
Telerik.Web.UI.GridItemEventArgs e)
{
     if (e.Item is GridEditFormItem && e.Item.IsInEditMode)
     {
         GridEditFormItem editItem =
(GridEditFormItem)e.Item;
9/2/2015 Dynamically define Rad Grid using Code Behind in C# ­ Grid ­ UI for ASP.NET AJAX Forum
http://www.telerik.com/forums/dynamically­define­rad­grid­using­code­behind­in­c 4/8
         DropDownList ddl =
(DropDownList)editItem.FindControl("dropdownlist1");
         ddl.DataSourceID = "SqlDataSource1";
         ddl.DataTextField = "Employeeid";
         ddl.DataValueField = "Employeeid";
         ddl.SelectedIndex = editItem.ItemIndex;
     }
}
Thanks,
Princy
Reply
 
Muhamma
d
4 posts
Member
since:
Dec 2013
Link to this postPosted 13 May 2014
Thanks Princy for Reply its work fine i want to add one thing more into it
when user click's on edit button Dropdown list Populate's, 
but Selected value is not defined as previous selected value lets suppose
EmployeeID = 5 when user Click on Edit Button Dropdown List Show's but
Selected Value of Dropdown is 1 i want to dropdown to Select previos value
as previously defined.
Reply
 
Muhamma
d
4 posts
Member
since:
Dec 2013
Link to this postPosted 13 May 2014
and when i click add or edit button it does not fires any event how to make it
possible
Reply
 
Princy Link to this postPosted 13 May 2014 in reply to Muhammad
9/2/2015 Dynamically define Rad Grid using Code Behind in C# ­ Grid ­ UI for ASP.NET AJAX Forum
http://www.telerik.com/forums/dynamically­define­rad­grid­using­code­behind­in­c 5/8
17421 posts
Member
since:
Mar 2007
Hi Muhammad,
In order to set the selected value of the DropDown you can take a look at the
following code snippet.
Then for the events to fire, make sure you have added them to your code and
if your are handling it manually, do not set
AllowAutomaticUpdates/AllowAutomaticInserts to true. Provide your code if
this doesn't help.
C#:
RadGrid1.MasterTableView.CommandItemDisplay =
GridCommandItemDisplay.Top;
RadGrid1.AutoGenerateEditColumn = true;
RadGrid1.ItemDataBound+=new
GridItemEventHandler(RadGrid1_ItemDataBound);
RadGrid1.InsertCommand += new
GridCommandEventHandler(RadGrid1_InsertCommand);
RadGrid1.UpdateCommand += new
GridCommandEventHandler(RadGrid1_UpdateCommand);
. . .
protected void RadGrid1_ItemDataBound(object sender,
Telerik.Web.UI.GridItemEventArgs e)
{
     if (e.Item is GridEditFormItem && e.Item.IsInEditMode)
     {
      GridEditFormItem editItem = (GridEditFormItem)e.Item;
      DropDownList ddl =
(DropDownList)editItem.FindControl("dropdownlist1");
      ddl.DataSourceID = "SqlDataSource1";
      ddl.DataTextField = "Employeeid";
      ddl.DataValueField = "Employeeid";
      ddl.SelectedValue = DataBinder.Eval(editItem.DataItem,
"Employeeid").ToString();//set the selected value
     }
}
Thanks,
Princy
Reply
 
Muhamma
d
Link to this postPosted 14 May 2014 in reply to Princy
9/2/2015 Dynamically define Rad Grid using Code Behind in C# ­ Grid ­ UI for ASP.NET AJAX Forum
http://www.telerik.com/forums/dynamically­define­rad­grid­using­code­behind­in­c 6/8
d
4 posts
Member
since:
Dec 2013
Thanks Princy its all work fine i want to add one more feature to be included.
is it possible to define Template Field Dynamically i mean to say i want to
attach this one Defined Template Field in More than one Columns of Rad Grid
with Different Column Name, Drop Down List Data etc.??
Thanks in Advance
Reply 
Princy
17421 posts
Member
since:
Mar 2007
Link to this postPosted 15 May 2014 in reply to Muhammad
Hi Muhammad,
I'm not clear about your requirement, I guess you want to use the same
ItemTemplate and EditItemTemplate class for different columns. Please take
a look at the following, if this doesn't help, elaborate your requirement.
C#:
string templateColumnName = "EmployeeID";
GridTemplateColumn EmployeeID = new GridTemplateColumn();
EmployeeID.ItemTemplate = new MyTemplate(templateColumnName);
EmployeeID.EditItemTemplate = new
MyEditTemplate(templateColumnName);
EmployeeID.HeaderText = templateColumnName;
EmployeeID.DataField = "EmployeeID";
RadGrid1.MasterTableView.Columns.Add(EmployeeID);
 
 
templateColumnName = "ShipCity";
GridTemplateColumn City = new GridTemplateColumn();
City.ItemTemplate = new MyTemplate(templateColumnName);
City.EditItemTemplate = new MyEditTemplate(templateColumnName);
City.HeaderText = templateColumnName;
City.DataField = "ShipCity";
RadGrid1.MasterTableView.Columns.Add(City);
. . . .
public class MyTemplate : ITemplate
{
     protected Label lControl;
     private string colname;
     
     public MyTemplate(string cName)
     {
         colname = cName;
     }
     public void InstantiateIn(System.Web.UI.Control container)
     {
         lControl = new Label();
9/2/2015 Dynamically define Rad Grid using Code Behind in C# ­ Grid ­ UI for ASP.NET AJAX Forum
http://www.telerik.com/forums/dynamically­define­rad­grid­using­code­behind­in­c 7/8
         lControl = new Label();
         lControl.ID = "lControl"+colname;
         lControl.DataBinding += new
EventHandler(lControl_DataBinding);
         container.Controls.Add(lControl);
     }
 
     public void lControl_DataBinding(object sender, EventArgs
e)
     {
         Label l = (Label)sender;
         GridDataItem container =
(GridDataItem)l.NamingContainer;
         l.Text = ((DataRowView)container.DataItem)
[colname].ToString() + "<br />";
     }
}
 
public class MyEditTemplate : IBindableTemplate
{
      private string colname;
      public MyEditTemplate(string cName)
     {
         colname = cName;
     }
     public void InstantiateIn(Control container)
     {
         GridEditFormItem item = ((GridEditFormItem)
(container.NamingContainer));
         DropDownList drop = new DropDownList();
         drop.ID = "dropdownlist"+colname;
         container.Controls.Add(drop);
     }
     public System.Collections.Specialized.IOrderedDictionary
ExtractValues(System.Web.UI.Control container)
     {
         OrderedDictionary od = new OrderedDictionary();
         od.Add("OrderID", ((DropDownList)
(((GridEditFormItem)
(container)).FindControl("dropdownlist"+colname))).DataValueField);
         return od;
     }
}
 
protected void RadGrid1_ItemDataBound(object sender,
Telerik.Web.UI.GridItemEventArgs e)
{
     if (e.Item is GridEditFormItem && e.Item.IsInEditMode)
     {
         GridEditFormItem editItem =
9/2/2015 Dynamically define Rad Grid using Code Behind in C# ­ Grid ­ UI for ASP.NET AJAX Forum
http://www.telerik.com/forums/dynamically­define­rad­grid­using­code­behind­in­c 8/8
Back to Top
Post a reply
         GridEditFormItem editItem =
(GridEditFormItem)e.Item;
         DropDownList ddlEmployeeid =
(DropDownList)editItem.FindControl("dropdownlistEmployeeID");
         ddlEmployeeid.DataSourceID = "SqlDataSource1";
         ddlEmployeeid.DataTextField = "EmployeeID";
         ddlEmployeeid.DataValueField = "EmployeeID";
         ddlEmployeeid.SelectedValue =
DataBinder.Eval(editItem.DataItem, "EmployeeID").ToString();
         DropDownList ddlShipCity =
(DropDownList)editItem.FindControl("dropdownlistShipCity");
         ddlShipCity.DataSourceID = "SqlDataSource1";
         ddlShipCity.DataTextField = "ShipCity";
         ddlShipCity.DataValueField = "ShipCity";
         ddlShipCity.SelectedValue =
DataBinder.Eval(editItem.DataItem, "ShipCity").ToString();
     }
}
Thanks,
Princy
Reply

More Related Content

What's hot

Angular components
Angular componentsAngular components
Angular componentsSultan Ahmed
 
Angular 8
Angular 8 Angular 8
Angular 8 Sunil OS
 
Introduction to Spring Framework and Spring IoC
Introduction to Spring Framework and Spring IoCIntroduction to Spring Framework and Spring IoC
Introduction to Spring Framework and Spring IoCFunnelll
 
The New JavaScript: ES6
The New JavaScript: ES6The New JavaScript: ES6
The New JavaScript: ES6Rob Eisenberg
 
Routing & Navigating Pages in Angular 2
Routing & Navigating Pages in Angular 2Routing & Navigating Pages in Angular 2
Routing & Navigating Pages in Angular 2Knoldus Inc.
 
Salesforce integration best practices columbus meetup
Salesforce integration best practices   columbus meetupSalesforce integration best practices   columbus meetup
Salesforce integration best practices columbus meetupMuleSoft Meetup
 
AX 2012: All About Lookups!
AX 2012: All About Lookups!AX 2012: All About Lookups!
AX 2012: All About Lookups!MAnasKhan
 
Oracle Web ADI Implementation Steps
Oracle Web ADI Implementation StepsOracle Web ADI Implementation Steps
Oracle Web ADI Implementation Stepsstandale
 
Lightning web components - Introduction, component Lifecycle, Events, decorat...
Lightning web components - Introduction, component Lifecycle, Events, decorat...Lightning web components - Introduction, component Lifecycle, Events, decorat...
Lightning web components - Introduction, component Lifecycle, Events, decorat...Nidhi Sharma
 
ASP.NET Core MVC + Web API with Overview
ASP.NET Core MVC + Web API with OverviewASP.NET Core MVC + Web API with Overview
ASP.NET Core MVC + Web API with OverviewShahed Chowdhuri
 
Step by Step Guide on Lazy Loading in Angular 11
Step by Step Guide on Lazy Loading in Angular 11Step by Step Guide on Lazy Loading in Angular 11
Step by Step Guide on Lazy Loading in Angular 11Katy Slemon
 

What's hot (20)

Spring Web MVC
Spring Web MVCSpring Web MVC
Spring Web MVC
 
Angular components
Angular componentsAngular components
Angular components
 
Angular 8
Angular 8 Angular 8
Angular 8
 
Introduction to Spring Framework and Spring IoC
Introduction to Spring Framework and Spring IoCIntroduction to Spring Framework and Spring IoC
Introduction to Spring Framework and Spring IoC
 
The New JavaScript: ES6
The New JavaScript: ES6The New JavaScript: ES6
The New JavaScript: ES6
 
Spring MVC
Spring MVCSpring MVC
Spring MVC
 
Routing & Navigating Pages in Angular 2
Routing & Navigating Pages in Angular 2Routing & Navigating Pages in Angular 2
Routing & Navigating Pages in Angular 2
 
Salesforce integration best practices columbus meetup
Salesforce integration best practices   columbus meetupSalesforce integration best practices   columbus meetup
Salesforce integration best practices columbus meetup
 
AX 2012: All About Lookups!
AX 2012: All About Lookups!AX 2012: All About Lookups!
AX 2012: All About Lookups!
 
Oracle Web ADI Implementation Steps
Oracle Web ADI Implementation StepsOracle Web ADI Implementation Steps
Oracle Web ADI Implementation Steps
 
Spring ppt
Spring pptSpring ppt
Spring ppt
 
Selenium
SeleniumSelenium
Selenium
 
Lightning web components - Introduction, component Lifecycle, Events, decorat...
Lightning web components - Introduction, component Lifecycle, Events, decorat...Lightning web components - Introduction, component Lifecycle, Events, decorat...
Lightning web components - Introduction, component Lifecycle, Events, decorat...
 
Learn react-js
Learn react-jsLearn react-js
Learn react-js
 
Angular
AngularAngular
Angular
 
ASP.NET Core MVC + Web API with Overview
ASP.NET Core MVC + Web API with OverviewASP.NET Core MVC + Web API with Overview
ASP.NET Core MVC + Web API with Overview
 
Badis
Badis Badis
Badis
 
AngularJS
AngularJS AngularJS
AngularJS
 
Step by Step Guide on Lazy Loading in Angular 11
Step by Step Guide on Lazy Loading in Angular 11Step by Step Guide on Lazy Loading in Angular 11
Step by Step Guide on Lazy Loading in Angular 11
 
Spring User Guide
Spring User GuideSpring User Guide
Spring User Guide
 

Viewers also liked (12)

Android tutorial
Android tutorialAndroid tutorial
Android tutorial
 
Cdn
CdnCdn
Cdn
 
Tutorial 1
Tutorial 1Tutorial 1
Tutorial 1
 
sample tutorial
 sample tutorial  sample tutorial
sample tutorial
 
Android examples
Android examplesAndroid examples
Android examples
 
Schemas and soap_prt
Schemas and soap_prtSchemas and soap_prt
Schemas and soap_prt
 
Radgrid
RadgridRadgrid
Radgrid
 
Sq lite manager
Sq lite managerSq lite manager
Sq lite manager
 
Jaxrs 1.0-final-spec
Jaxrs 1.0-final-specJaxrs 1.0-final-spec
Jaxrs 1.0-final-spec
 
00016335
0001633500016335
00016335
 
Cdn tutorial adcom
Cdn tutorial adcomCdn tutorial adcom
Cdn tutorial adcom
 
Walkthrough asp.net
Walkthrough asp.netWalkthrough asp.net
Walkthrough asp.net
 

Similar to Dynamically define rad grid using code behind in c# grid - ui for asp

Decoupled drupal DcRuhr
Decoupled drupal DcRuhrDecoupled drupal DcRuhr
Decoupled drupal DcRuhrAhmad Hassan
 
gratisexam.com-Microsoft.Braindumps.AZ-900.v2019-05-23.by.Francesco.62q.pdf
gratisexam.com-Microsoft.Braindumps.AZ-900.v2019-05-23.by.Francesco.62q.pdfgratisexam.com-Microsoft.Braindumps.AZ-900.v2019-05-23.by.Francesco.62q.pdf
gratisexam.com-Microsoft.Braindumps.AZ-900.v2019-05-23.by.Francesco.62q.pdfssuserfe3eeb
 
Kicking off with Zend Expressive and Doctrine ORM (PHP South Africa 2018)
Kicking off with Zend Expressive and Doctrine ORM (PHP South Africa 2018)Kicking off with Zend Expressive and Doctrine ORM (PHP South Africa 2018)
Kicking off with Zend Expressive and Doctrine ORM (PHP South Africa 2018)James Titcumb
 
Kicking off with Zend Expressive and Doctrine ORM (PHP MiNDS March 2018)
Kicking off with Zend Expressive and Doctrine ORM (PHP MiNDS March 2018)Kicking off with Zend Expressive and Doctrine ORM (PHP MiNDS March 2018)
Kicking off with Zend Expressive and Doctrine ORM (PHP MiNDS March 2018)James Titcumb
 
Introduction to Cloud computing and Microsoft azure
 Introduction to Cloud computing and Microsoft azure Introduction to Cloud computing and Microsoft azure
Introduction to Cloud computing and Microsoft azureShravandeepYadav
 
DDS Web Programming with dscript
DDS Web Programming with dscriptDDS Web Programming with dscript
DDS Web Programming with dscriptAngelo Corsaro
 
An Introduction to the Jena API
An Introduction to the Jena APIAn Introduction to the Jena API
An Introduction to the Jena APICraig Trim
 
Google cloud Professional Data Engineer practice exam test 2020
Google cloud Professional Data Engineer practice exam test 2020Google cloud Professional Data Engineer practice exam test 2020
Google cloud Professional Data Engineer practice exam test 2020SkillCertProExams
 
Backing yourself into an Accessible Corner
Backing yourself into an Accessible CornerBacking yourself into an Accessible Corner
Backing yourself into an Accessible CornerMark Casias
 
Rethinking Angular Architecture & Performance
Rethinking Angular Architecture & PerformanceRethinking Angular Architecture & Performance
Rethinking Angular Architecture & PerformanceMark Pieszak
 
Principles of MVC for Rails Developers
Principles of MVC for Rails DevelopersPrinciples of MVC for Rails Developers
Principles of MVC for Rails DevelopersEdureka!
 
An Introduction to the SOLID Principles
An Introduction to the SOLID PrinciplesAn Introduction to the SOLID Principles
An Introduction to the SOLID PrinciplesAttila Bertók
 
Digibury: Getting your web presence mobile ready - David Walker
Digibury: Getting your web presence mobile ready - David WalkerDigibury: Getting your web presence mobile ready - David Walker
Digibury: Getting your web presence mobile ready - David WalkerLizzie Hodgson
 

Similar to Dynamically define rad grid using code behind in c# grid - ui for asp (20)

Zend Framework
Zend FrameworkZend Framework
Zend Framework
 
My charts can beat up your charts
My charts can beat up your chartsMy charts can beat up your charts
My charts can beat up your charts
 
Sling Models Overview
Sling Models OverviewSling Models Overview
Sling Models Overview
 
Decoupled drupal DcRuhr
Decoupled drupal DcRuhrDecoupled drupal DcRuhr
Decoupled drupal DcRuhr
 
gratisexam.com-Microsoft.Braindumps.AZ-900.v2019-05-23.by.Francesco.62q.pdf
gratisexam.com-Microsoft.Braindumps.AZ-900.v2019-05-23.by.Francesco.62q.pdfgratisexam.com-Microsoft.Braindumps.AZ-900.v2019-05-23.by.Francesco.62q.pdf
gratisexam.com-Microsoft.Braindumps.AZ-900.v2019-05-23.by.Francesco.62q.pdf
 
Kicking off with Zend Expressive and Doctrine ORM (PHP South Africa 2018)
Kicking off with Zend Expressive and Doctrine ORM (PHP South Africa 2018)Kicking off with Zend Expressive and Doctrine ORM (PHP South Africa 2018)
Kicking off with Zend Expressive and Doctrine ORM (PHP South Africa 2018)
 
Kicking off with Zend Expressive and Doctrine ORM (PHP MiNDS March 2018)
Kicking off with Zend Expressive and Doctrine ORM (PHP MiNDS March 2018)Kicking off with Zend Expressive and Doctrine ORM (PHP MiNDS March 2018)
Kicking off with Zend Expressive and Doctrine ORM (PHP MiNDS March 2018)
 
Introduction to Cloud computing and Microsoft azure
 Introduction to Cloud computing and Microsoft azure Introduction to Cloud computing and Microsoft azure
Introduction to Cloud computing and Microsoft azure
 
DDS Web Programming with dscript
DDS Web Programming with dscriptDDS Web Programming with dscript
DDS Web Programming with dscript
 
An Introduction to the Jena API
An Introduction to the Jena APIAn Introduction to the Jena API
An Introduction to the Jena API
 
Google cloud Professional Data Engineer practice exam test 2020
Google cloud Professional Data Engineer practice exam test 2020Google cloud Professional Data Engineer practice exam test 2020
Google cloud Professional Data Engineer practice exam test 2020
 
Best practices android_2010
Best practices android_2010Best practices android_2010
Best practices android_2010
 
Backing yourself into an Accessible Corner
Backing yourself into an Accessible CornerBacking yourself into an Accessible Corner
Backing yourself into an Accessible Corner
 
Rethinking Angular Architecture & Performance
Rethinking Angular Architecture & PerformanceRethinking Angular Architecture & Performance
Rethinking Angular Architecture & Performance
 
Principles of MVC for Rails Developers
Principles of MVC for Rails DevelopersPrinciples of MVC for Rails Developers
Principles of MVC for Rails Developers
 
190 959
190 959190 959
190 959
 
Dg presentation
Dg presentationDg presentation
Dg presentation
 
An Introduction to the SOLID Principles
An Introduction to the SOLID PrinciplesAn Introduction to the SOLID Principles
An Introduction to the SOLID Principles
 
Digibury: Getting your web presence mobile ready - David Walker
Digibury: Getting your web presence mobile ready - David WalkerDigibury: Getting your web presence mobile ready - David Walker
Digibury: Getting your web presence mobile ready - David Walker
 
Migrate in Drupal 8
Migrate in Drupal 8Migrate in Drupal 8
Migrate in Drupal 8
 

Recently uploaded

Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 

Recently uploaded (20)

Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 

Dynamically define rad grid using code behind in c# grid - ui for asp