Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
79 views
Hey guys,
Here's the situation.
I have a radgrid with a dropdown box with different ways to export the grid data that also triggers a confirm type form to pop up.
The form asks the user if they want to perform other tasks before exporting: yes or no, then the window is closed and sends an AJAX request to perform either option. But in both cases, although the export method is hit, nothing gets exported. I have had the grid wrapped in an AJAXPanel and not but it hasn't made a difference.
Please help! Thank you
Aaron

function exportGrid() {  
            $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("ExportGrid");  
        }     
 
 
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest">  
            <AjaxSettings>  
                <telerik:AjaxSetting AjaxControlID="RadAjaxManager1">  
                    <UpdatedControls>  
                        <telerik:AjaxUpdatedControl ControlID="rgAcctTrans" />  
                    </UpdatedControls>  
                </telerik:AjaxSetting>  
            </AjaxSettings>  
        </telerik:RadAjaxManager>  
 
           protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)  
        {  
 if (e.Argument == "ExportGrid")  
            {  
                try 
                {  
                    string dateExtension = string.Empty;  
                    string to = string.Empty;  
                    string from = string.Empty;  
                    if ((dpFrom.SelectedDate.HasValue) || (dpTo.SelectedDate.HasValue))  
                    {  
                        if (dpTo.SelectedDate.HasValue)  
                            to = dpTo.SelectedDate.Value.ToString("dd.MM.yyyy");  
                        if (dpFrom.SelectedDate.HasValue)  
                            from = dpFrom.SelectedDate.Value.ToString("dd.MM.yyyy");  
                        dateExtension += "." + from + "-" + to;  
                    }  
                    if ((dpBilledFrom.SelectedDate.HasValue) || (dpBilledTo.SelectedDate.HasValue))  
                    {  
                        if (dpBilledFrom.SelectedDate.HasValue)  
                            from = dpBilledFrom.SelectedDate.Value.ToString("dd.MM.yyyy");  
                        if (dpBilledTo.SelectedDate.HasValue)  
                            to = dpBilledTo.SelectedDate.Value.ToString("dd.MM.yyyy");  
                        dateExtension += ".Billed-" + from + "-" + to;  
                    }  
 
 
                    rgAcctTrans.ExportSettings.ExportOnlyData = false;  
                    rgAcctTrans.ExportSettings.FileName = "Transactions" + dateExtension;  
                    rgAcctTrans.ExportSettings.IgnorePaging = true;  
                    rgAcctTrans.ExportSettings.OpenInNewWindow = false;  
 
                    rgAcctTrans.Columns[0].HeaderStyle.HorizontalAlign = HorizontalAlign.Left;  
                    rgAcctTrans.Columns[0].ItemStyle.HorizontalAlign = HorizontalAlign.Left;  
                    rgAcctTrans.Columns[1].HeaderStyle.HorizontalAlign = HorizontalAlign.Right;  
                    rgAcctTrans.Columns[1].ItemStyle.HorizontalAlign = HorizontalAlign.Right;  
                    //rgAcctTrans.Rebind();  
 
                    switch (ddlExportTo.SelectedValue)  
                    {  
                        case "Excel":  
                            {  
                                rgAcctTrans.MasterTableView.ExportToExcel();  
                                break;  
                            }  
                        case "Word":  
                            {  
                                rgAcctTrans.MasterTableView.ExportToWord();  
                                break;  
                            }  
                        case "CSV":  
                            {  
                                rgAcctTrans.MasterTableView.ExportToCSV();  
                                break;  
                            }  
                    }  
                      
                    ddlExportTo.Items[0].Selected = true;  
                }  
                catch (Exception ex)  
                {  
                    lblMessage.Text = "An error has occurred. <br/> " + ex.Message;  
                } 
            }
        } 
Aaron
Top achievements
Rank 1
 answered on 06 Nov 2009
2 answers
122 views
Hello,

My code running since long time through various version is totally broken by Q3.2009 version.

Main problem is an exception in RadWebControl.LoadPostData: Invalid Json primitive.
Something has been changed in the way RadDock save its data, i am using a code common from forum to save the Dock position, something like this:

/// Called by DockLayout just after Init  
        protected void RadDockLayout1_LoadDockLayout(object sender, DockLayoutEventArgs e)  
        {           foreach (DockState state in CurrentDockStates)  
            {  
                                e.Positions[state.UniqueName]   =   state.DockZoneID;  
                e.Indices[state.UniqueName]     =   state.Index;  
            }  

and

/// Called by DockLayout just after PreRender  
        protected void RadDockLayout1_SaveDockLayout(object sender, DockLayoutEventArgs e)  
        {  
            //Save the dock state in the session. This will enable us   
            // to recreate the dock in the next Page_Init.   
            List<DockState> lst     =   RadDockLayout1.GetRegisteredDocksState();  
            CurrentDockStates       = lst;  
        } 

Second problem is that the grid I was installing in a dock to take its full width seems now greater that the available space and it generate scrollers ! Very ugly !!!

The code which was working without scrollers

<telerik:RadDockLayout runat="server" ID="RadDockLayout1">  
<telerik:RadDock ID="GridDock" Title="SELECTED" Top="150px" Left="70%"   
    style=" margin-left:auto; margin-right:auto; min-width:305px;min-height:200px;" DefaultCommands='PinUnpin' Pinned="false" DockMode="Floating" 
        runat="server" > 
        <Commands> 
        <telerik:DockPinUnpinCommand  AutoPostBack="true" /> 
        </Commands> 
        <ContentTemplate> 
        <telerik:RadGrid ID="RadGrid2" runat="server" GridLines="None" AutoGenerateColumns="False" style=" border-left-width:0; border-right-width:0; border-top-width:0; border-bottom-width:1; border-bottom-style: solid; width:303px;min-height:200px;" > 
        <MasterTableView> 
            <ExpandCollapseColumn Visible="False" Resizable="False">  
                <HeaderStyle Width="20px" /> 
            </ExpandCollapseColumn> 
            <RowIndicatorColumn Visible="False">  
                <HeaderStyle Width="20px" /> 
            </RowIndicatorColumn> 
            <Columns> 
                <telerik:GridBoundColumn DataField="Name" HeaderText="NAME" 
                    ItemStyle-Width='200px' UniqueName="Name">  
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="Parameter" HeaderText="PARAMETER" 
                    ItemStyle-Width='200px' UniqueName="Parameter">  
                </telerik:GridBoundColumn> 
            </Columns> 
        </MasterTableView> 
        </telerik:RadGrid> 
        </ContentTemplate> 
    </telerik:RadDock>   
</telerik:RadDockLayout> 
 


Thanks for urgent help.

CS

Petio Petkov
Telerik team
 answered on 06 Nov 2009
1 answer
172 views
Have you guys considered adding a Windows 7 theme for the Toolbar control (or was it added in Q3)? It's mostly just a recolor of the Vista version, but the Windows 7 color scheme is considerably more pleasing and blends in better with other similarly themed UI elements. Apologies if this has been asked before. Thanks!
Kamen Bundev
Telerik team
 answered on 06 Nov 2009
1 answer
158 views

Hi,

I am using below template in grid :-

 
<telerik:GridTemplateColumn HeaderText="SequenceOrder" Groupable="false" Visible="true">
<ItemTemplate>
<telerik:RadNumericTextBox ID="txtSequence" runat="server" MaxLength="5" NumberFormat-DecimalDigits="0">
</telerik:RadNumericTextBox>
</ItemTemplate>
</telerik:GridTemplateColumn>

This is done to assign a sequence to existing RowItems.

Hence when a user enters some number in above textbox and press a button the sequence is updated in database.
And when the user loads the application this textboxes are populated with previously entered sequence at runtime in ItemDataBound Event as below :-
 
 

RadNumericTextBox txtSequence = e.Item.FindControl("txtSequence") as RadNumericTextBox;
DataTable table = GetSequenceData();
if (table != null)
{
 if (table.Rows.Count == 1)
 {
  txtSequence.Text = table.Rows[0][0].ToString();
 }
}

Is there any way i can sort rows of this grid based on entered sequence values.

Pavlina
Telerik team
 answered on 06 Nov 2009
3 answers
239 views
Ive uploaded my website to a hosted environment and im getting an error with the upload progress component.
In my web.config file i have this line

<add name="Telerik_RadUploadProgressHandler_ashx" verb="*" preCondition="integratedMode" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI"/>

but im getting this error

RadUpload Ajax callback error. Source url returned invalid content:



<html>

    <head>

        <title>The resource cannot be found.</title>

        <style>

         body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}

         p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}

         b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}

         H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }

         H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }

         pre {font-family:"Lucida Console";font-size: .9em}

         .marker {font-weight: bold; color: black;text-decoration: none;}

         .version {color: gray;}

         .error {margin-bottom: 10px;}

         .expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }

        </style>

    </head>



    <body bgcolor="white">



            <span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>



            <h2> <i>The resource cannot be found.</i> </h2></span>



            <font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">



            <b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. &nbsp;Please review the following URL and make sure that it is spelled correctly.

            <br><br>



            <b> Requested URL: </b>/Telerik.RadUploadProgressHandler.ashx<br><br>



    </body>

</html>





../Telerik.RadUploadProgressHandler.ashx?RadUrid=4ccf6f2b-5268-462d-abc0-d5fc9c3dcd15



Did you register the RadUploadProgressHandler in web.config?



Please, see the help for more details: RadUpload for ASP.NET Ajax - Configuration - RadUploadProgressHandler.



Vesko
Top achievements
Rank 2
 answered on 06 Nov 2009
3 answers
171 views

The following event fires fine when selecting a day "ClientEvents-OnDateSelected", my problem is when they select "Today" from the month view this event does not fire, is there another event that fires for this button?

Dimo
Telerik team
 answered on 06 Nov 2009
1 answer
90 views
In the upload control is there a way to take for an example a jpeg, and in the control specify that it uploads as binary?  I am using the Entity Framework and Object Data Source Controls so it would be nice if I didn't have to handle this process sepereately.
Veselin Vasilev
Telerik team
 answered on 06 Nov 2009
1 answer
100 views
Hi,
    In my RadGrid, Header Context Menu is not displayed properly in Internet Explorer(see screenshot internetexplorer.jpg). Header Context Menu works fine in Firefox(see screenshot firefox.jpg). Please let me know if this is a known issue and if there is a workaround/fix for this.

Thanks
Satyaprakash J
Dimo
Telerik team
 answered on 06 Nov 2009
6 answers
192 views
Hi,

I got a strange problem. I have designed an upload page few months ago. The upload, progress, everything works fine. But I just found recently the progress bar no longer work, but the upload still works. I am using 2008 Q3 for this project.

I create a test page on the same site, in which the progress bar doesn't work:

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Test.aspx.vb" Inherits="TJC.elibrary.cmWizardRemoteUpload.Test" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="ScriptManager1" runat="server">
    </telerik:RadScriptManager>
    <telerik:RadProgressManager ID="RadProgressManager1" runat="server" />
    <div>
        <telerik:RadUpload ID="RadUpload1" runat="server"
            AllowedFileExtensions=".mp3,.jpg" MaxFileInputsCount="1">
        </telerik:RadUpload>
        <br /><br />
        <asp:Button ID="btnSubmit" runat="server" Text="Upload" />
        
        <telerik:RadProgressArea ID="RadProgressArea1" runat="server">
        </telerik:RadProgressArea>
    </div>
    </form>
</body>
</html>


web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <configSections>
      <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
        <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
          <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
          <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
            <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />
            <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
            <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
            <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
          </sectionGroup>
        </sectionGroup>
      </sectionGroup>
        <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
            <section name="TJC.elibrary.cmWizardRemoteUpload.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        </sectionGroup>
    </configSections>  


    <appSettings>
    </appSettings>

        <connectionStrings />
 
    <system.web>
        <!-- Required for RAD Upload 2008 Q3 Beta-->
        <trust level="Full"/>
        <!-- RAD.Upload: allow total 200MB in one upload with maxium 2 hrs uploading time -->
        <httpRuntime maxRequestLength="307200" executionTimeout="7200" />

        <!--
            Set compilation debug="true" to insert debugging
            symbols into the compiled page. Because this
            affects performance, set this value to true only
            during development.

            Visual Basic options:
            Set strict="true" to disallow all data type conversions
            where data loss can occur.
            Set explicit="true" to force declaration of all variables.
        -->
        <compilation debug="true" strict="false" explicit="true">

          <assemblies>
            <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
            <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
            <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
            <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
          </assemblies>

        </compilation>
        <pages>
          <namespaces>
            <clear />
            <add namespace="System" />
            <add namespace="System.Collections" />
            <add namespace="System.Collections.Generic" />
            <add namespace="System.Collections.Specialized" />
            <add namespace="System.Configuration" />
            <add namespace="System.Text" />
            <add namespace="System.Text.RegularExpressions" />
            <add namespace="System.Linq" />
            <add namespace="System.Xml.Linq" />
            <add namespace="System.Web" />
            <add namespace="System.Web.Caching" />
            <add namespace="System.Web.SessionState" />
            <add namespace="System.Web.Security" />
            <add namespace="System.Web.Profile" />
            <add namespace="System.Web.UI" />
            <add namespace="System.Web.UI.WebControls" />
            <add namespace="System.Web.UI.WebControls.WebParts" />
            <add namespace="System.Web.UI.HtmlControls" />
          </namespaces>

          <controls>
            <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
            <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
          </controls>

        </pages>
        <!--
            The <authentication> section enables configuration
            of the security authentication mode used by
            ASP.NET to identify an incoming user.
        -->
        <authentication mode="Windows" />
        <!--
            The <customErrors> section enables configuration
            of what to do if/when an unhandled error occurs
            during the execution of a request. Specifically,
            it enables developers to configure html error pages
            to be displayed in place of a error stack trace.

        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->
        <customErrors mode="Off" />
        <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" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" />
    
          <!-- for RAD Upload-->
          <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2008.3.1016.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false" />
          <add verb="*" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI" />
        </httpHandlers>
        <httpModules>
          <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

          <!-- for RAD Upload-->
          <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" />
        </httpModules>


    </system.web>

    <system.codedom>
      <compilers>
        <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
          <providerOption name="CompilerVersion" value="v3.5" />
          <providerOption name="OptionInfer" value="true" />
          <providerOption name="WarnAsError" value="false" />
        </compiler>
      </compilers>
    </system.codedom>

    <!--
        The system.webServer section is required for running ASP.NET AJAX under Internet
        Information Services 7.0.  It is not necessary for previous version of IIS.
    -->
    <system.webServer>
      <validation validateIntegratedModeConfiguration="false" />
      <!-- for RAD.Upload: the following code is to enable large file upload in IIS7 (200 MB) -->
      <security >
        <requestFiltering>
          <requestLimits maxAllowedContentLength="3072000000" />
        </requestFiltering>
      </security>
      <modules>
        <remove name="ScriptModule" />
        <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

        <!-- for RAD Upload-->
        <add name="ProgressModule" preCondition="integratedMode" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" />
      </modules>
      <handlers>
        <remove name="WebServiceHandlerFactory-Integrated" />
        <remove name="ScriptHandlerFactory" />
        <remove name="ScriptHandlerFactoryAppServices" />
        <remove name="ScriptResource" />
        <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.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=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

        <!-- for RAD Upload-->
        <add name="Telerik.Web.UI.WebResource" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2008.3.1016.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" />
        <add name="TelerikRadProgress" preCondition="integratedMode" path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI" />
      </handlers>
      <directoryBrowse enabled="true" />
    </system.webServer>

    <runtime>
      <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
        <dependentAssembly>
          <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
          <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
        </dependentAssembly>
        <dependentAssembly>
          <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" />
          <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
        </dependentAssembly>
      </assemblyBinding>
    </runtime>

    <applicationSettings>
    </applicationSettings>
</configuration>



Not sure what's going on. This page is very critical to the project, please let me know how to fix it ASAP.

Thanks,
Darren

Darren
Top achievements
Rank 1
 answered on 06 Nov 2009
5 answers
261 views
Hi

I seem to be having some problems with all of the built-in skins for both the Calendar and Datepicker controls for Ajax. Irrelevant of which skin i choose I do not see any images and the width of the calendar / popup fills 100% of the width of the remaining page.

is there a fix for this sort of behaviour or am I doing something stupid? I'm using numerous other Telerik controls and they all display correctly so i'm fairly sure my setup is OK.

Thanks
Keith
Annie Vincent
Top achievements
Rank 1
 answered on 06 Nov 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?