or
protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e){ if (e.Argument == "exportCsv") { exportCsvActivity(); } else if (e.Argument == "exportExcel") { exportExcelActivity(); } }protected void exportExcelActivity(){ ConfigureExport(); this.gridActivity.MasterTableView.ExportToExcel();}public void ConfigureExport(){ this.gridActivity.ExportSettings.ExportOnlyData = false; this.gridActivity.ExportSettings.IgnorePaging = true; this.gridActivity.ExportSettings.OpenInNewWindow = false; this.gridActivity.MasterTableView.GetColumn("chkTemplate").Visible = false; this.gridActivity.MasterTableView.GetColumn("messageIndex").Visible = false;function RadAjaxManager1_OnRequestStart(ajaxManager, eventArgs) { if (eventArgs.EventArgument == "exportCsv" || eventArgs.EventArgument == "exportExcel") { eventArgs.EnableAjax = false; } }function exportCsv(){ $find("<%= this.RadAjaxManager1.ClientID %>").ajaxRequest("exportCsv");}function exportExcel(){ $find("<%= this.RadAjaxManager1.ClientID %>").ajaxRequest("exportExcel");} <asp:LinkButton ID="btnExportExcel" runat="Server" Text="Excel Export" CommandName="exportExcel" CommandArgument="exportExcel" CssClass="subPageLinks" OnClientClick="exportExcel(); return false;" ></asp:LinkButton>Hi All,
I have upgraded my Telerik RAD controls version from 2009.2.701.20 to 2010.2.713.35(Trial Version) in my application.
I have used both "Telerik.Web.Design.dll" and "Telerik.Web.UI.dll" int he application.
While running the application i got the error "Microsoft JScript runtime error: 'constructor' is null or not an object".
Then i replaced all the scripts which were used in the previous version by new version scripts.
No my application is loading the RAD date picker properly, but when i am clicking, it throws the following error:
"Microsoft JScript runtime error: Object doesn't support this property or method"
and the picker is not showing...
Could anyone help me to solve this issue...
Thanx in advance!
Regards
Pravels