<?
xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<
configuration>
<
appSettings/>
<
connectionStrings>
<
add name="TestSite.Reports.Properties.Settings.TestDatabase" connectionString="Data Source=test\sqlexpresscreate;Initial Catalog=TestDatabase;Persist Security Info=True;User ID=testuser;Password=test123" providerName="System.Data.SqlClient" />
</
connectionStrings>
<
system.web>
<
compilation debug="false" targetFramework="4.0" />
<
authentication mode="Windows"/>
<
authorization>
<
allow roles="Domain\Group1,Domain\Group2,Domain\Group3" />
<
deny users="*" />
</
authorization>
</
system.web>
<
system.serviceModel>
<
bindings>
<
webHttpBinding>
<
binding name="webHttpBinding">
<
security mode="Transport">
<
transport clientCredentialType="Windows" proxyCredentialType="None"/>
</
security>
</
binding>
</
webHttpBinding>
<
wsHttpBinding>
<
binding name="wsHttpBinding">
<!--
FOR SECURE-HTTPS -->
<
security mode="Transport">
<
transport clientCredentialType="Windows" proxyCredentialType="None"/>
</
security>
<!--
FOR NORMAL (DO NOTHING)-->
</
binding>
</
wsHttpBinding>
</
bindings>
<
behaviors>
<
serviceBehaviors>
<
behavior name="AllMyServiceBehaviors">
<
serviceMetadata httpsGetEnabled="true" httpsGetUrl=""/>
<!--
FOR NORMAL <serviceMetadata httpGetEnabled="true" /> -->
<
serviceDebug includeExceptionDetailInFaults="true"/>
</
behavior>
</
serviceBehaviors>
<
endpointBehaviors>
<
behavior name="scriptEndPointBehavior">
<
webHttp/>
<
enableWebScript/>
</
behavior>
</
endpointBehaviors>
</
behaviors>
<
services>
<
service name="Site.Web.SiteService" behaviorConfiguration="AllMyServiceBehaviors">
<
endpoint bindingNamespace="site.sitesite.org.services" address="wsHttpBinding" binding="wsHttpBinding" contract="PPD.Web.IPPDService" bindingConfiguration="wsHttpBinding">
</
endpoint>
</
service>
<
service name="Telerik.Reporting.Service.ReportService" behaviorConfiguration="AllMyServiceBehaviors">
<
endpoint bindingNamespace="site.sitesite.org.services" address="wsHttpBinding" binding="wsHttpBinding" contract="Telerik.Reporting.Service.IReportService" bindingConfiguration="wsHttpBinding">
</
endpoint>
</
service>
</
services>
<
serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</
system.serviceModel>
</
configuration>
<UserControl x:Class="RadControlsSilverlightApp1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation">
<Grid x:Name="LayoutRoot">
<telerik:RadCalendar HorizontalAlignment="Left" Margin="136,133,0,0" Name="radCalendar1" VerticalAlignment="Top" />
</Grid>
</UserControl>
Code Behind
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
namespace RadControlsSilverlightApp1
{
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
radCalendar1.SelectionChanged+=new Telerik.Windows.Controls.SelectionChangedEventHandler(radCalendar1_SelectionChanged);
}
private void radCalendar1_SelectionChanged(object sender, Telerik.Windows.Controls.SelectionChangedEventArgs e)
{
MessageBox.Show("test");
}
}
}
We developed ten years ago a report component to create our own reports.
There we give the option to our client to organize the fields by drag and drop. The client is able to place the field wherever they want.
Is it possible in Telerik?
Attached in this thread I sent one picture to demonstrate better what I’m trying to say.