Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
protected
void
Radgrid1_ItemDataBound(
object
sender, Telerik.Web.UI.GridItemEventArgs e)
{
if
(e.Item
is
GridEditFormInsertItem && e.Item.OwnerTableView.IsItemInserted)
string
ValueToRadgrid = txtbox1.Text;
// Getting the TextBox value outside the RadGrid
GridEditFormInsertItem editInsert = (GridEditFormInsertItem)e.Item;
TextBox txt = (TextBox)editInsert[
"UniqueName"
].Controls[0];
txt.Text = ValueToRadgrid;
}
Protected
Sub
Radgrid1_ItemDataBound(sender
As
Object
, e
Telerik.Web.UI.GridItemEventArgs)
If
TypeOf
e.Item
Is
GridEditFormInsertItem
AndAlso
e.Item.OwnerTableView.IsItemInserted
Then
Dim
ValueToRadgrid1
String
= RadComboBox1.SelectedValue
ValueToRadgrid2
= RadComboBox2.SelectedValue
editInsert
GridEditFormInsertItem =
DirectCast
(e.Item, GridEditFormInsertItem)
txt
TextBox =
(editInsert(
"UniqueName1"
).Controls(0), TextBox)
txt.Text = ValueToRadgrid1
txt1
"UniqueName2"
txt1.Text = ValueToRadgrid2
End