RadPanelItem pnlItem3 = new RadPanelItem();
pnlItem3.Text =
"Include";
pnlItem3.CssClass =
"RedPanelItem";
pnlItem2.Items.Add(pnlItem3);
This is the third level on a panelbar.
I've defined the style as below on the masterpage
<style type="text/css">
.RedPanelItem
{
color: red;
}
</style>
Unable to cast object of type 'Telerik.Web.UI.RadScriptManager' to type 'Microsoft.PerformancePoint.Scorecards.WebParts.ScriptManagerLoader'.
I found a thread for the solution ( http://blogs.msdn.com/fooshen/archive/2008/10/18/performance-point-server-2007-and-ajax-on-sharepoint.aspx ), but when I change the RadScriptManager for the PPS:ScriptManagerLoader my slider is disabled, and when I try to edit my page (Edit Page in SharePoint) I have this error:
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
Source Error:
|
Stack Trace:
|
| Protected Sub btnExport_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles btnExport.Click |
| RadGrid1.ExportSettings.ExportOnlyData = True |
| RadGrid1.ExportSettings.IgnorePaging = True |
| RadGrid1.ExportSettings.OpenInNewWindow = True |
| RadGrid1.MasterTableView.ExportToExcel() |
| End Sub |
| Protected Sub RadGrid1_ExcelExportCellFormatting(ByVal source As Object, ByVal e As Telerik.Web.UI.ExcelExportCellFormattingEventArgs) |
| If TypeOf e.FormattedColumn Is GridGroupSplitterColumn Then |
| e.Cell.Visible = False |
| End If |
| End Sub |