RadGrid1.ExportSettings.Excel.Format = Telerik.Web.UI.
GridExcelExportFormat.ExcelML;
RadGrid.MasterTableview.ExportToExcel()
and
RadGrid1_ExcelMLExportStylesCreated,
RadGrid1_ExcelMLExportRowCreated.
I just want get whatever in radgrid as it is in excel.
How to achieve this please let me know.
Thanks in advance.
Manoj Gupta

string paramVal = "('" + isConditionalTimeFrame + "','" + imgExpandButton.UniqueID + "','" + grdViewRegistries.ClientID + "')";
if
(isConditionalTimeFrame)
{
dtpLastEventDate.ClientEvents.OnDateSelected =
"dtpLastEventDate_OnDateSelected" + paramVal;
}
This is my java script,
function
dtpLastEventDate_OnDateSelected(isConditionalTimeFrame, imgExpandButtonUniqueID, grdViewRegistriesClientID)
{
}
The issue is, the script is executed immediately after ItemDataBound, and its not triggered when I select any date in the DatePicker.
If anybody have any idea about this, pls share with me.
Thanks.
Protected Sub OnAjaxUpdate(sender As Object, args As ToolTipUpdateEventArgs) Me.UpdateToolTip(args.Value, args.UpdatePanel) End SubPrivate Sub UpdateToolTip(elementID As String, panel As UpdatePanel) Dim ctrl As Control = Page.LoadControl("../Class_Details.ascx") Session("center_id") = elementID panel.ContentTemplateContainer.Controls.Add(ctrl) End Sub