All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
protected
void
RadGrid1_ItemDataBound(
object
sender, Telerik.Web.UI.GridItemEventArgs e)
{
if
(e.Item
is
GridCommandItem)
GridCommandItem item = (GridCommandItem)e.Item;
Button img = (Button)item.FindControl(
"AddNewRecordButton"
);
img.Attributes.Add(
"onclick"
,
"ShowWindow();return false;"
}
function
ShowWindow()
var
window = radopen(
"RadWindow1"
null