On page load I am getting two errors:
The server method GetResources / GetAppointments Failed.
Also if I try to insert I get "InsertAppointment" failed.
I am using .NET MVC 4
The Scheduler is being put on the page via a partial control.
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<dynamic>" %><%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %><form id="SchedulerForm" runat="server"> <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server"></telerik:RadStyleSheetManager> <asp:ScriptManager runat="server" ID="sm1"></asp:ScriptManager> <telerik:RadAjaxManager ID="RadAjaxManager" runat="server"><AjaxSettings><telerik:AjaxSetting AjaxControlID="Scheduler"><UpdatedControls><telerik:AjaxUpdatedControl ControlID="Scheduler" /></UpdatedControls></telerik:AjaxSetting></AjaxSettings></telerik:RadAjaxManager><telerik:RadScheduler runat="server" ID="Scheduler"ClientIDMode="Static"StartInsertingInAdvancedForm="True"AllowEdit="true" AllowInsert="true"> <WebServiceSettings path="/Models/SchedulerWcfService.svc" UseHttpGet="true" ResourcePopulationMode="ClientSide"/><AdvancedForm Modal="true" /></telerik:RadScheduler>
The path to the webservice works.
<system.serviceModel> <bindings> <basicHttpBinding> <binding name="BasicHttpEndpointBinding"> <security mode="TransportCredentialOnly"> <transport clientCredentialType="Windows" /> </security> </binding> </basicHttpBinding> </bindings> <services> <service behaviorConfiguration="AuthenticationServiceTypeBehaviors"name="DOTTReportsWebViewer.Models.SchedulerWcfService"> <endpoint binding="basicHttpBinding" bindingConfiguration="BasicHttpEndpointBinding"name="BasicHttpEndpoint" contract="DOTTReportsWebViewer.Models.SchedulerWcfService" /> </service> </services> <behaviors> <serviceBehaviors> <behavior name="AuthenticationServiceTypeBehaviors"> <serviceMetadata httpGetEnabled="true" /> <serviceDebug includeExceptionDetailInFaults="false" /> </behavior> </serviceBehaviors> </behaviors> </system.serviceModel> </form>
If I change :
<WebServiceSettings path="/Models/SchedulerWcfService.svc" UseHttpGet="true" ResourcePopulationMode
="ClientSide"/>
to:
<WebServiceSettings path="/Models/SchedulerWcfService.svc" UseHttpGet="true" ResourcePopulationMode="ServerSide"/>
I get a 401 error
I have switched to using absolute positioning via CSS classes for most of my page layouts.
I have a problem when working with various control wizards, more likely an issue with VS 2012, but I think other Telerik customers may have the same problem and hopefully know the solution. See attachment for an example of the HTML Designer window.
In the example, the menu appears at the top, as expected. The grid jammed-up against it, and attempting to select the Item Editor just selects the master page zone.
Previously with flow layout, the controls were spaced so that access to the item editor / wizard buttons were easy to locate and click.
radchart.PlotArea.YAxis.AutoScale = false;<br>radchart.PlotArea.YAxis.MinValue = 0;<br>radchart.PlotArea.YAxis.MaxValue = (int) ((double)_maxAmount * 1.1);<br>radchart.PlotArea.YAxis.Step = 500;
$find("<%= rr_Q1a.ClientID %>").get_value()
var oExplorer = $find("<%= RadFileExplorer1.ClientID %>"); alert(oExplorer.get_listView().get_currentPageIndex());
Hi:
How do I rename a PivotGridAggregateField header so it doesn’t says “Sum of ‘Datafield’”?
I am using ASP.NET 4.5, Windows 8, Internet Explorer 10.0.9200.16721, Telerik v.2013.2.717.45, C#.
The provided help will be appreciated.
Thanks!
Jose
<telerik:RadRotator ID="radrotAlerts" runat="server" Skin="Hay" Width="650px" Height="50px" ItemWidth="650" ItemHeight="50" ScrollDirection="Up" ScrollDuration="1000" FrameDuration="3000" RotatorType="AutomaticAdvance"> <ItemTemplate> <div style="width:650px; height:50px; vertical-align:middle; text-align:left;"> <asp:Label ID="lblAlert" runat="server" Visible='<%# string.IsNullOrEmpty(Eval("AlertUrl").ToString()) ? true : false %>'> <%# Eval("AlertText") %> </asp:Label> </div> </ItemTemplate> </telerik:RadRotator>