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
<
telerik:RadButton
ID
=
"ExportBtn"
runat
"server"
Text
"ExportToExcel"
OnClick
"ExportBtn_Click"
OnClientClicking
"OnClientClicking"
>
</
protected
void
ExportBtn_Click(
object
sender, EventArgs e)
{
RadGrid1.MasterTableView.ExportToExcel();
}
function
OnClientClicking(sender, args) {
var
callBackFunction = Function.createDelegate(sender,
(argument) {
if
this
.click();
});
text =
"Are you sure you want to Export the Grid?"
;
radconfirm(text, callBackFunction, 300, 100,
null
,
"Title"
);
args.set_cancel(
true