Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
protected
void
RadGrid1_ItemCreated(
object
sender, Telerik.Web.UI.GridItemEventArgs e)
{
if
(e.Item
is
GridEditableItem && e.Item.IsInEditMode)
GridEditableItem item = (GridEditableItem)e.Item;
TableCell cell = item[
"ColumnUniqueName"
];
RadWindow window1 =
new
RadWindow();
window1.NavigateUrl =
"www.google.com"
;
window1.VisibleOnPageLoad =
true
window1.Width = 400;
window1.Height = 500;
cell.Controls.Add(window1);
}
<
telerik:RadWindowManager
ID
=
"window1"
runat
"server"
>
Windows
telerik:RadWindow
"RadWindow1"
</
asp:Button
"Button1"
OnClientClick
"OnClientClick();return false;"
Text
"Button"
/>
function
OnClientClick()
var
window = $find(
'<%= RadWindow1.ClientID %>'
);
window = radopen(
"http://www.gogle.com"
,
null
window.show();