Unfortunately, the Telerik skins don't specify a text color for each and every HTML element of the scheduler.
For example, the default styling for the H2 element in the scheduler header seems to be:
.RadScheduler .rsHeader h2 { font-size: 15px; font-weight: normal; line-height: 30px; text-indent: 43px; height: 30px; display: block; overflow: hidden;}So now the scheduler picks up whatever color for eg. H2 elements is generally specified in the website, which might not be a suitable color for the scheduler at all.
I understand that I can overrule this in a specific website. But I would like a consistent look of the scheduler elements, regardless of the website styles at hand.
Can you please add default coloring to all control elements in the Telerik control skins?
I'm getting a warning on any date before 1980. There are no validators attached in the HTML, and nothing in the code behind. Is there anyway around this.
<telerik:RadDatePicker ID="dtRetailIndusOfficeRentRollLeaseStartDate" TabIndex="4" runat="server"></telerik:RadDatePicker><telerik:RadGrid ID="gv1" runat="server"> <MasterTableView DataKeyNames="UserId"> <Columns> <telerik:GridTemplateColumn> <ItemTemplate> <asp:CheckBox ID="CheckBox1" runat="server" /> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView> </telerik:RadGrid>
Hi,
Telerik UI for ASP.NET AJAX 2015.2.623
IE10
Visual Studion 2013
I am new to the PivotGrid and can't seem to figure out this simple thing. My SQLDataSource returns a list of valves. 2 of the columns are "Valve Size" and "Valve Type". I have a sinple PivotGrid with a row field of "Valve Size" and a column field of "Valve Type":
<telerik:RadPivotGrid ID="RadPivotGrid1" runat="server" DataSourceID="sds_ValvesBuiltByDay">
<Fields>
<telerik:PivotGridColumnField DataField="Valve Type"></telerik:PivotGridColumnField>
<telerik:PivotGridRowField DataField="Valve Size"></telerik:PivotGridRowField>
</Fields>
</telerik:RadPivotGrid>
When the page loads, there are rows for each size returned and columns for tech type but the individual cells in the grid are empty.
(See attached screenshot. The RadGrid below the PivotGrid displays the same data from the same SQL data source)
I want each cell to show the count of records for that size and type combination.
This is probably very simple but I have not found a way to do it.
Please tell me what I am doing wrong.

I am trying to set focus to a textbox within the edit template and when it runs I get the following error:A first chance exception of type 'System.NullReferenceException' occurred in NgeDataEntry.dll
{"Object reference not set to an instance of an object."}
Not sure what I have wrong here. Can anyone spot the mistake.
protected void RadGrid1_ItemCreated(object sender, Telerik.Web.UI.GridItemEventArgs e) { if (e.Item is GridEditFormItem && e.Item.IsInEditMode) { UserControl myUserControl = e.Item.FindControl(GridEditFormItem.EditFormUserControlID) as UserControl; string script = String.Format("$get('{0}').focus(); $get('{0}').select();", myUserControl.FindControl("RadTextBox2").ClientID); ScriptManager.RegisterStartupScript(Page, typeof(Page), "myscript", script, true); } }
I have WorkDayStartTime and WorkDayEndTime set to 07:00 and 20:00 respectively but the calendar / scheduler is fixed at 8:00-5:00, no expansion, no scroll bars. Am I missing something?
<telerik:RadScheduler ID="RadScheduler1" runat="server" DataDescriptionField="Description" DataEndField="End" DataKeyField="ID" DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurrenceParentID" DataReminderField="Reminder" DataSourceID="SqlDataSource1" DataStartField="Start" DataSubjectField="Subject" Height="900px" SelectedView="WeekView" Width="990px" WorkDayEndTime="20:00:00" WorkDayStartTime="07:00:00" EnableCustomAttributeEditing="True" TimeZoneOffset="-06:00:00" StartInsertingInAdvancedForm="false" OnClientAppointmentEditing="AppointmentEditing" OnClientAppointmentInserting="AppointmentInserting" OnAppointmentDataBound="RadScheduler1_AppointmentDataBound" OnAppointmentCreated="RadScheduler1_AppointmentCreated" OnAppointmentCommand="RadScheduler1_AppointmentCommand" > <ExportSettings FileName="CalendarExport" OpenInNewWindow="True">

protected void Page_Load(object sender, EventArgs e)
{
FileExplorer.Configuration.ContentProviderTypeName = typeof(SPContentProvider).AssemblyQualifiedName;
Page.ClientScript.RegisterStartupScript(Page.GetType(), "AjaxUpdatePanelFix", "_spOriginalFormAction = document.forms[0].action; _spSuppressFormOnSubmitWrapper=true;", true);
FileExplorer.Style.Add("overflow", "hidden");
SetFileExplorerPaths();
} private void SetFileExplorerPaths()
{
List<String> paths = new List<String>();
SPListCollection docLibraries = RetrieveDocumentLibraries(SPContext.Current.Web);
foreach (SPList list in docLibraries)
{
if (SPContentProvider.IsNotSystemFolder(list.RootFolder)) {paths.Add(list.RootFolder.ServerRelativeUrl);}
}
string[] convertedPaths = paths.ToArray();
FileExplorer.Configuration.ViewPaths = convertedPaths;
FileExplorer.Configuration.UploadPaths = FileExplorer.Configuration.ViewPaths;
FileExplorer.Configuration.DeletePaths = FileExplorer.Configuration.ViewPaths;
}private PathPermissions GetPermissions(Guid listId, SPWeb web)
