or

| protected void btnExport_Click(object sender, ImageClickEventArgs e) |
| { |
| DataTable dtExport = ExecTools.General.GetResCodeTreeExport(Application["ExecData"].ToString()); |
| Telerik.Web.UI.RadGrid ExportGrid = new RadGrid(); |
| ExportGrid.AutoGenerateColumns = true; |
| ExportGrid.DataSource = dtExport; |
| ExportGrid.DataBind(); |
| ExportGrid.ExportSettings.Excel.FileExtension = "xls"; |
| ExportGrid.ExportSettings.FileName = "ResCodes"; |
| ExportGrid.ExportSettings.ExportOnlyData = true; |
| ExportGrid.ExportSettings.IgnorePaging = false; |
| ExportGrid.ExportSettings.OpenInNewWindow = true; |
| ExportGrid.ExportSettings.Excel.Format = GridExcelExportFormat.ExcelML; |
| ExportGrid.MasterTableView.ExportToExcel(); |
| } |
one a use the code
RadToolTipManager1.TargetControls.Add(lblLink.ClientID, IDPessoa,
true);
the HyperLink that surround the target object becomes unclicable.
other problem that have is that when i positon the tolltip to be in the topleft of the element it comes out in the wrong position
var
focussedEditor = $find("<%=Radeditor1.ClientID %>");
focussedEditor.setFocus();
Kind of worked but it sets the entire editor into focus and not exclusively the textfield.Property RadDockableObjectCommand is not present in Q2 2008. Is there any equivalent for the same.
To add more details I have the following line of code
RadDockableObjectCommand dockCommand = new RadDockableObjectCommand("Delete", "Delete", "DeleteBtn.gif", true);