Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
116 views
With the declaration of the RadChart (see below), I found few render problems:

1 - When unzoomed, the top-left corner of the PlotArea is round if I ask to have to have all corners of the chart only to be round. I tried to declare in the code (ASPX) to have all PlotArea corners as rectangle without success.

2- When zoomes, both axis are greater than the PlotArea. The worst one is the X-Axis which is very to big and in the left it terminate where the Y-Axis Label begin.

Note: I am using version 2012.3.1308.45

ASPX
<telerik:RadChart ID="RadChart" runat="server" Width="800px" DefaultType="Line" OnClick="RadChart_Click" OnZoom="RadChart_Zoom" AutoLayout="True" Height="400px" >
    <ClientSettings ScrollMode="Both" ZoomRectangleColor="White" ZoomRectangleOpacity="0.5" />
    <ChartTitle>
        <TextBlock Text="Exemple avec RadChart">
        </TextBlock>
    </ChartTitle>
    <Series>
        <telerik:ChartSeries Name="Value_OK" Type="Line">
            <Appearance ShowLabels="False">
                <FillStyle MainColor="Lime">
                </FillStyle>
            </Appearance>
        </telerik:ChartSeries>
        <telerik:ChartSeries Name="Value_Alarm" Type="Line">
            <Appearance ShowLabels="False">
                <FillStyle MainColor="Aqua">
                </FillStyle>
            </Appearance>
        </telerik:ChartSeries>
        <telerik:ChartSeries Name="HighLimit" Type="Line">
            <Appearance ShowLabels="False">
                <FillStyle MainColor="Red">
                </FillStyle>
            </Appearance>
        </telerik:ChartSeries>
    </Series>
    <Appearance TextQuality="AntiAlias" Corners="Round, Round, Round, Round, 6">
    </Appearance>
    <PlotArea>
        <Appearance Dimensions-Margins="18%, 24%, 22%, 10%">
            <FillStyle MainColor="Black" />
        </Appearance>
        <XAxis LayoutMode="Normal" AutoScale="False">
            <AxisLabel TextBlock-Text="Temperature (&deg;C)">
            </AxisLabel>
            <Appearance ValueFormat="ShortTime" >
                <MajorGridLines Visible="true" />
                <MinorGridLines Visible="false"/>
                <LabelAppearance RotationAngle="90" Position-AlignedPosition="Top">
                </LabelAppearance>
            </Appearance>
        </XAxis>
        <YAxis IsZeroBased="false" AxisMode="Extended">
            <Appearance>
                <MajorGridLines Visible="true"/>
                <MinorGridLines Visible="False" />
            </Appearance>
            <AxisLabel Visible="true">
                <TextBlock Text="Temperature (°C)">
                </TextBlock>
            </AxisLabel>
        </YAxis>
    </PlotArea>
</telerik:RadChart>
Peshito
Telerik team
 answered on 08 Feb 2013
1 answer
165 views
I want to use RadChar as a userControl and load it to a web page. But when I load it to the page, Chart loads but without the Chart Lines (lines in the middle). I herewith attach the sample code I created to reproduce the issue. 

--Default.aspx--
<%@ Page Title="" Language="C#" MasterPageFile="~/Site1.Master" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication3.WebForm1" %>
 
<%@ Register Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
    Namespace="System.Web.UI" TagPrefix="asp" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Charting" Assembly="Telerik.Web.UI" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
    <asp:Panel runat="server" ID="panel1"></asp:Panel>
    <asp:Button ID="Button1" runat="server" Text="Button"
    onclick="Button1_Click1" />
</asp:Content>

--Default.aspx.cs--
public partial class WebForm1 : System.Web.UI.Page
    {
        private WebUserControl1 uc1;
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                uc1 = (WebUserControl1)this.LoadControl("WebUserControl1.ascx");
                this.panel1.Controls.Add(uc1);
            }
        }
}

--WebUserControl1.ascx--
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WebUserControl1.ascx.cs" Inherits="WebApplication3.WebUserControl1" %>
<%@ Register Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
    Namespace="System.Web.UI" TagPrefix="asp" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Charting" Assembly="Telerik.Web.UI" %>
 
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
        <ContentTemplate>
        <telerik:RadChart EnableViewState="False" ID="RadChart1" runat="Server" Width="495px" AutoLayout="true" Skin="Mac">
                <ClientSettings EnableZoom="false" ScrollMode="XOnly" XScale="4"></ClientSettings>
                <Series>
                    <telerik:ChartSeries DataYColumn="MyColumn" Type="Line">
                        <Appearance FillStyle-MainColor="223, 87, 60">
                        </Appearance>
                    </telerik:ChartSeries>
                </Series>
                <Legend Visible="true"></Legend>
                <ChartTitle TextBlock-Text="Scrolling only (initial XScale applied)">
                </ChartTitle>
            </telerik:RadChart>
            </ContentTemplate>
    </asp:UpdatePanel>

--WebUserControl1.ascx.cs--
public partial class WebUserControl1 : System.Web.UI.UserControl
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if(!IsPostBack)
                LoadChart();
        }
 
        private void LoadChart()
        {
            // Define chart and titleRadChart radChart = new RadChart();
            RadChart1.ChartTitle.TextBlock.Text = "My RadChart";
            RadChart1.ChartTitle.TextBlock.Appearance.TextProperties.Color = System.Drawing.Color.Blue;
            // Define chart series
            ChartSeries chartSeries = new ChartSeries();
            chartSeries.Appearance.LabelAppearance.Visible = true;
            chartSeries.Name = "GDP";
            chartSeries.Type = ChartSeriesType.Line;
            chartSeries.Appearance.LineSeriesAppearance.Color = System.Drawing.Color.BlueViolet;
            // Define the items in the series
            chartSeries.AddItem(1);
            chartSeries.AddItem(1.5);
            chartSeries.AddItem(2.0);
            chartSeries.AddItem(2.5);
            chartSeries.AddItem(3.5);
            // visually enhance the datapoints
            chartSeries.Appearance.PointMark.Dimensions.AutoSize = false;
            chartSeries.Appearance.PointMark.Dimensions.Width = 8;
            chartSeries.Appearance.PointMark.Dimensions.Height = 8;
            chartSeries.Appearance.PointMark.FillStyle.MainColor = System.Drawing.Color.Black;
            chartSeries.Appearance.PointMark.Visible = true;
            // Define chart series
            ChartSeries chartSeries2 = new ChartSeries();
            chartSeries2.Appearance.LabelAppearance.Visible = false;
            chartSeries2.Name = "GNP";
            chartSeries2.Type = ChartSeriesType.Line;
            chartSeries2.Appearance.LineSeriesAppearance.Color = System.Drawing.Color.Green;
            // Define the items in the series
            chartSeries2.AddItem(2);
            chartSeries2.AddItem(3);
            chartSeries2.AddItem(3.5);
            chartSeries2.AddItem(4);
            chartSeries2.AddItem(4.5);
            // visually enhance the data points
            chartSeries2.Appearance.PointMark.Dimensions.AutoSize = false;
            chartSeries2.Appearance.PointMark.Dimensions.Width = 5;
            chartSeries2.Appearance.PointMark.Dimensions.Height = 5;
            chartSeries2.Appearance.PointMark.FillStyle.MainColor = System.Drawing.Color.Black;
            chartSeries2.Appearance.PointMark.Visible = true;
            // set the plot area gradient background fill
            RadChart1.PlotArea.Appearance.FillStyle.FillType = Telerik.Charting.Styles.FillType.Solid;
            RadChart1.PlotArea.Appearance.FillStyle.MainColor = System.Drawing.Color.FromArgb(65, 201, 254);
            RadChart1.PlotArea.Appearance.FillStyle.SecondColor = System.Drawing.Color.FromArgb(0, 107, 186);
            // Set text and line for X axis
            RadChart1.PlotArea.XAxis.AxisLabel.TextBlock.Text = "Years";
            RadChart1.PlotArea.XAxis.AxisLabel.TextBlock.Appearance.TextProperties.Color = System.Drawing.Color.Red;
            RadChart1.PlotArea.XAxis.Appearance.Width = 3;
            RadChart1.PlotArea.XAxis.Appearance.Color = System.Drawing.Color.Red;
            // Set text and line for Y axis
            RadChart1.PlotArea.YAxis.AxisLabel.TextBlock.Text = "%";
            RadChart1.PlotArea.YAxis.AxisLabel.TextBlock.Appearance.TextProperties.Color = System.Drawing.Color.Red;
            RadChart1.PlotArea.YAxis.Appearance.Width = 3;
            RadChart1.PlotArea.YAxis.Appearance.Color = System.Drawing.Color.Red;
            // Add the series to the chart, chart to
            RadChart1.Series.Add(chartSeries);
            RadChart1.Series.Add(chartSeries2);
        }
    }

--Site.Master--
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site1.master.cs" Inherits="WebApplication3.Site1" %>
 
<%@ Register Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
    Namespace="System.Web.UI" TagPrefix="asp" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Charting" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head runat="server">
    <title></title>
    <asp:ContentPlaceHolder ID="head" runat="server">
    </asp:ContentPlaceHolder>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <div>
        <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
         
        </asp:ContentPlaceHolder>
    </div>
    </form>
</body>
</html>

Appreciate your help

Thanks,
Viraj.
Petar Kirov
Telerik team
 answered on 08 Feb 2013
5 answers
152 views
We are using the latest version of RadPivotGrid in our web apps and noticed that PivotGrid filters are not being preserved. For example, I clicked on the first filter, all the checkboxes are checked, I uncheck all and check only one box. Then I click on another filter and none of the checkboxes are checked, I check one again in the second filter. Then I go back to the first filter, instead of showing that one checkbox I checked, all the checkboxes are unchecked. But the filtering seems to be working correctly but the check boxes for the "filtered" options are not being preserved. Is this a bug in the PivotGrid, or is there some settings I can set to prevent this from happening? It is very confusing to our customers.
Tsvetoslav
Telerik team
 answered on 08 Feb 2013
14 answers
1.3K+ views
Using:

<ClientSettings> 
   <ClientEvents OnFilterMenuShowing="filterMenushowing" /> 
</ClientSettings> 

How do I eliminate filter options for a given column under Prometheus.

I've gotten this far:

    <script type="text/javascript" language="javascript">  
      
      function filterMenushowing(sender, eventArgs)  
      {  
        if(eventArgs.get_column().get_uniqueName() == "unique_invoice_no")  
        {  
            var menu = eventArgs.get_menu();  
              
            var i = 0;  
            while (i < menu._items.length)  
            {  
                if (menu._items[i].Value != "NoFilter" && menu._items[i].Value != "EqualTo")  
                {  
                    ???     
                }  
                i++;  
            }  
              
        }  
      }  
        
    </script> 

But trying to set the style to display = "none" where the question marks are does nothing? Do we do something with currentStyle now? Something totally different?

Maria Ilieva
Telerik team
 answered on 08 Feb 2013
1 answer
86 views
Hello,
Like following link > Cell Edit Section
http://deloy-dev.com/app_admin_prototype/jgrid_demo_4.0/jqGrid_comprehensive_demo.html

How to calculate Acc Total Column with the change of Deposit and Withdraw????

Thanks
Kostadin
Telerik team
 answered on 08 Feb 2013
3 answers
80 views
For my application, I have achieved something similar to the first example on this demo:

http://demos.telerik.com/aspnet-ajax/grid/examples/client/virtualscrollpaging/defaultcs.aspx

However, when a new page is loaded, the previous page's data is lost.  How can I enable caching so that once a page loads, the data is cached?  (The second example on the linked page implements this caching)
Kostadin
Telerik team
 answered on 08 Feb 2013
1 answer
99 views
Hi,

How can I achieve exporting the items of the grid from Multiple Pages. For example if I have a grid and I selected 3 items from page1 , 5 items from page 2 and 10 items from page 7. How do I export only the items that I have selected without any performance issues. I have custom paging enabled.

Thanks,
Eyup
Telerik team
 answered on 08 Feb 2013
5 answers
237 views
HI Support,

I am using the listbox control and have SelectionMode="Multiple" and it works fine in window environment.

When I open the page in Mac book either through Safari or Firefox. it doesn't select multiple record with command Button.

This is urgent please reply me ASAP.

Thanks
Ajay


Nencho
Telerik team
 answered on 08 Feb 2013
5 answers
182 views
Hello there,
I'm working on a project wich use Telerik RadControls. 
Since many days we are facing the same problem.
None of the solutions we found in forums worked.
You are our last chance !
We have to upload a file and we still get the same error message (see on : msq_erreur.png). 
We're working with Visual Studio 2010, and IIS 7.5 on a Seven 64 bits computer.
We try all the trick that are exposed on this page : 
http://www.telerik.com/help/aspnet-ajax/upload-configuration.html
And it still doesn't work. We also try to activate the "IIS 6 Compatibilty components" but nothing change.
I give you our web.config file :
<?xml version="1.0"?>
  <configSections>
    <section name="openaccess" type="OpenAccess.Config.ConfigSectionHandler, OpenAccess.Config.20, Version=1.0.0.0, Culture=neutral, PublicKeyToken=7ce17eeaf1d59342"/>
  </configSections>
  <appSettings>
    <add key="XXXX-Track.ConnectionString" value="server=.\XXXXXXXXX;database=XXXXXXXXX;uid=XXXX;pwd=_XXXX1"/>
    <add key="XXXX-Export.ConnectionString" value="server=.\XXXXXXXXX;database=XXXXXXXXX;uid=XXXX;pwd=_XXXX1"/>
    <add key="XXXXXXXXX.ConnectionString" value="server=.\XXXXXXXXX;database=XXXXXXXXX;uid=XXXX;pwd=_XXXX1"/>
    <add key="XXXX-Securite.ConnectionString" value="server=.\XXXXXXXXX;database=XXXXXXXXX;uid=XXXX;pwd=_XXXX1"/>
    <add key="XXXX-eReleve.ConnectionString" value="server=.\XXXXXXXXX;database=XXXXXXXXX;uid=XXXX;pwd=_XXXX1"/>
    <add key="XXXX-eReleve.OLEDBConnectionString" value="Provider=SQLOLEDB;Server=.\XXXXXXXXX;Database=XXXXXXXXX;Uid=XXXX; Pwd=_XXXX1"/>
    <add key="Ns-EVENTS.ConnectionString" value="server=.\XXXXXXXXX;database=TRACK_EVENTS;uid=XXXX;pwd=_XXXX1"/>
    <add key="TermPicker.NavigateUrl" value="../XXXXXXXXX/ViewSingleTopic.aspx?TTop_PK_ID="/>
    <add key="Ns-XForms.ConnectionString" value="Data Source=.\XXXXXXXXX;Initial Catalog=Ns-Forms;Persist Security Info=True;User ID=XXXX;Password=_XXXX1"/>
    <add key="Ns-XForms.OLEDBConnectionString" value="Provider=SQLOLEDB;Data Source=.\XXXXXXXXX;Initial Catalog=Ns-Forms;User ID=XXXX;Password=_XXXX1"/>
    <add key="Telerik.RadUpload.TempFolder" value="XXXXXXXXX"/>
  </appSettings>
  <connectionStrings>
    <remove name="LocalSqlServer"/>
    <add name="XXXXConnectionString1" connectionString="Data Source=XXXX-DATA;Initial Catalog=XXXX;Integrated Security=True" providerName="System.Data.SqlClient"/>
    <add name="XXXXConnectionString" connectionString="server=.\XXXXXXXXX;database=XXXX;uid=XXXX;pwd=_XXXX1" providerName="System.Data.SqlClient"/>
    <!--<add name="XXXXXXXXXConnectionString" connectionString="Data Source=.\XXXXXXXXX;Initial Catalog=XXXXXXXXX;uid=XXXX;pwd=_XXXX1" providerName="System.Data.SqlClient"/>-->
  </connectionStrings>
  <location path="APP_WebServices">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>
  <location path=".">
    <system.web>
      <webServices>
        <protocols>
          <add name="HttpGet"/>
          <add name="HttpPost"/>
        </protocols>
      </webServices>
      <httpRuntime maxRequestLength="8192"/>
      <httpHandlers>
        <remove verb="*" path="*.asmx"/>
        <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        <add verb="GET,HEAD" path="ScriptResource.axd" validate="false" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        <add verb="*" path="Telerik.RadUploadProgressHandler.aspx" type="Telerik.WebControls.RadUploadProgressHandler, RadUpload.Net2"/>
        <add verb="*" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI"/>
        <add verb="*" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/>
        <add verb="*" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/>
        <add verb="*" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/>
        <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false"/>
        <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false"/>
        </httpHandlers>
      <httpModules>
        <add name=" RadUploadModule" type=" Telerik.WebControls.RadUploadHttpModule, RadUpload.Net2"/>
        <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />     
      </httpModules>
      <customErrors mode="Off"/>
      <globalization enableClientBasedCulture="true" culture="auto" uiCulture="auto"/>
      <compilation debug="true" defaultLanguage="vb">
        <assemblies>
          <add assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
          <add assembly="System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
          <add assembly="System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="System.Web.ApplicationServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
          <add assembly="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
          <add assembly="System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
          <add assembly="System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="System.Web.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
          <add assembly="System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
          <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
          <add assembly="System.Data.Services.Client, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="System.Data.Services.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
          <add assembly="System.Web.DynamicData, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
          <add assembly="System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
          <add assembly="System.Web.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          <add assembly="Telerik.Web.UI, Version=2009.01.0527.35, Culture=neutral, PublicKeyToken=121FAE78165BA3D4"/>
        </assemblies>
        <buildProviders>
          <add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
        </buildProviders>
        <codeSubDirectories>
          <add directoryName="VBCode"/>
          <add directoryName="CSCode"/>
        </codeSubDirectories>
      </compilation>
      <trace enabled="false" requestLimit="10" pageOutput="true" traceMode="SortByTime" localOnly="true"/>
      <authentication mode="Forms">
        <forms name=".XXXX" loginUrl="Login.aspx" timeout="120"/>
      </authentication>
      <authorization>
        <deny users="?"/>
      </authorization>
      <pages maintainScrollPositionOnPostBack="true"/>
    </system.web>
  </location>
  <openaccess xmlns="http://www.vanatec.com/OpenAccess">
    <references/>
    <connections>
      <connection id="DatabaseConnection1">
        <databasename>XXXX</databasename>
        <servername>localhost</servername>
        <integratedSecurity>True</integratedSecurity>
        <backendconfigurationname>mssqlConfiguration</backendconfigurationname>
      </connection>
    </connections>
    <backendconfigurations>
      <backendconfiguration id="mssqlConfiguration" backend="mssql">
        <mappingname>mssqlMapping</mappingname>
      </backendconfiguration>
    </backendconfigurations>
    <mappings current="mssqlMapping">
      <mapping id="mssqlMapping"/>
    </mappings>
  </openaccess>
  <system.webServer>
 
    <validation validateIntegratedModeConfiguration="false" />
    <modules>
      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" preCondition="integratedMode" />
      <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    </modules>
    <handlers>
      <add name="ChartImage.axd_*" path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode" />
      <add name="Telerik.Web.UI.SpellCheckHandler.axd_*" path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode" />
      <add name="Telerik.Web.UI.DialogHandler.aspx_*" path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode" />
      <add name="Telerik.RadUploadProgressHandler.ashx_*" path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI" preCondition="integratedMode" />
      <add name="Telerik.Web.UI.WebResource.axd_*" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI"  preCondition="integratedMode" />
      <remove name="WebServiceHandlerFactory-Integrated" />
      <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <add name="Telerik_RadUploadProgressHandler_ashx" verb="*" preCondition="integratedMode" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" />
    </handlers>
    <defaultDocument>
      <files>
        <add value="login.aspx"/>
      </files>
    </defaultDocument>
  </system.webServer>
</configuration>
We hope you can help us.
Best Regards.
Plamen
Telerik team
 answered on 08 Feb 2013
3 answers
120 views
Hi,
How to set focus to telerik rad date picker, that resides in telerik rad grid as edit item template using javascript?.

Thanks & Regards
Anzar.M
Software Engineer
SBN // Technologics
Ernakulam. 
Eyup
Telerik team
 answered on 08 Feb 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?