Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
229 views
Hi,

I am using Telerik v 2009.01.0527.35. I have a toolbar used as an application menu bar within a Pane. This works fine in Firefox and IE but on Chrome, The menu bar drop down items are shown below my content on the other pane (i.e. this is a z-index problem). The toolbar has a z-index style as given below. When I add a Style="z-index: 9000001" tag to the Toolbarbutton items, now the text and the icons in the drop down menu items are visible but still there's no background or frame. Any ideas to fix that?

Thanks,
Ozgur

<telerik:RadToolBar ID="mainToolBar" runat="server" Style="z-index: 9000001" Width="1600px" OnClientButtonClicking="blue.controlHandler">
Hilmi Alphan Ozturk
Top achievements
Rank 1
 answered on 14 Aug 2009
1 answer
95 views
Is there a particular reason the Grid StatusBar is integrated with the Pager? While, this looks pretty good in most skins, it certainly makes providing custom content in the status bar much more difficult. Add to that the fact that you have to enable paging, and it pretty much means that providing custom content in the status bar is out of the question. This is not the end of the world, but I wonder if there was a particular reason for developing things this way. I would think a grid "Status bar" would behave in a similar fashion to a window status bar and this was the case in previous versions, where one could set the "Ready" text and "Loading" text. Anyhow, like I said the new implementaiton looks pretty good (though it is invisible in grids that don't implement paging), but is there any plan to seperating the two at some point in the future?
Dimo
Telerik team
 answered on 14 Aug 2009
1 answer
125 views

I have a question in regards to the response that is returned after an ajax request.  When I review the response in Fiddler after an ajax request it appears to contain content from other updatepanels that are not connected to the ajax request. 

I have an aspx that is setup for ajax as follows:

        <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" EnablePageHeadUpdate="False" UpdatePanelsRenderMode="Inline">  
            <AjaxSettings> 
                <telerik:AjaxSetting AjaxControlID="divOne">  
                    <UpdatedControls> 
                        <telerik:AjaxUpdatedControl ControlID="divTwo" LoadingPanelID="LoadingPanel1" /> 
                        <telerik:AjaxUpdatedControl ControlID="divOne" /> 
                    </UpdatedControls> 
                </telerik:AjaxSetting> 
            </AjaxSettings> 
        </telerik:RadAjaxManager> 

divTwo contains a usercontrol that has a radajaxmanagerproxy as follows

<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">  
    <AjaxSettings> 
        <telerik:AjaxSetting AjaxControlID="radgOne">  
            <UpdatedControls> 
                <telerik:AjaxUpdatedControl ControlID="radgOne" LoadingPanelID="LoadingPanel1" /> 
                <telerik:AjaxUpdatedControl ControlID="RadWindowManager"/>  
                <telerik:AjaxUpdatedControl ControlID="msg"/>  
            </UpdatedControls> 
        </telerik:AjaxSetting> 
    </AjaxSettings> 
</telerik:RadAjaxManagerProxy> 


The usercontrol contains a grid "radgOne" and other controls. When ever a operation is performed on the grid the ajax works; however, when viewing the response I see content from "divOne" on the aspx being sent back adding the overall size of the returned content.  Is this expected behaviour or is there something I'm over looking.

One other question.  I know RadAJAXManager uses updatepanels internally was wondering if there is an easier manner in which to set the ChildrenAsTriggers property other than programatically using the OnAjaxSettingCreated event?  Could there be property added to the AjaxUpdatedControl class?

Thanks
Matt
Pavlina
Telerik team
 answered on 14 Aug 2009
2 answers
237 views
I have RadComboBox and asp.net Checkbox inside RadAjaxPanel in usercontrol like this:

<telerik:RadAjaxPanel ID="rapOrganization" runat="server">
    <telerik:RadComboBox ID="cboOrganizations" runat="server" ErrorMessage="aaa" EmptyMessage="No organization set" AutoPostBack="true"
        EnableLoadOnDemand="True" OnClientItemsRequesting="OnClientItemsRequesting" EnableVirtualScrolling="true"
        EnableItemCaching="true" Height="150px" OnItemsRequested="cboOrganizations_ItemsRequested"
        ShowMoreResultsBox="true" MarkFirstMatch="true" Width="250px">
    </telerik:RadComboBox>
    <asp:CheckBox ID="chkActiveOrg" runat="server" CssClass="chkStyle" Text="Active Only" Width="80" />
</telerik:RadAjaxPanel>

After text changing on server side I allways got false for checkbox value. On itemsrequest only combobox data is available, checkbox state is wrong. Is there any solution for this?
Yuri
Top achievements
Rank 1
 answered on 14 Aug 2009
3 answers
356 views
I have four radtextboxes. On the fourth one, I want to call a JavaScript function. I need to get all four of the values of the textboxes to manipulate them. So far, I cannot get anything to fire on my onblur event. Anyone know why? Here is my code.

<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/admin/Admin.Master"
    CodeBehind="AddBusiness.aspx.vb" Inherits="ClickableCommunity.AddBusiness" %>

<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
    <script type="text/javascript">
        function getLatLon(street, city, state, zip) {
            alert(street + city + state + zip);
        }//getLatLong
        
    </script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="header" runat="server">
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="MainContent" runat="server">
    <telerik:RadTextBox ID="streetInput" runat="server" Label="Street">
    </telerik:RadTextBox>
    <telerik:RadTextBox ID="cityInput" runat="server" label="City">
    </telerik:RadTextBox>
    <telerik:RadTextBox ID="stateInput" runat="server" label="State">
    </telerik:RadTextBox>
    <telerik:RadTextBox ID="zipInput" runat="server">
        <ClientEvents OnBlur="getLatLon('<%= streetInput.ClientID %>',
                                        '<%= cityInput.ClientID %>',
                                        '<%= stateInput.ClientID %>',
                                        '<%= zipInput.ClientID %>')" />
    </telerik:RadTextBox>
</asp:Content>

Paul
Telerik team
 answered on 14 Aug 2009
5 answers
147 views
Hi,

I would like to be able to open a context menu when the Client-Side event "OnClientNodeDropped" is fired. From this I would like the user to be able to choose an item from the context menu. 
So, server side I would like to get: 
What choice was made on the context menu
What is the destination node
What is the source node

I realise a similar question has been asked, (http://www.telerik.com/community/forums/aspnet-ajax/treeview/contextmenu-on-onnodedropping-event.aspx), however, this was posted more than a year ago. 
Is there anyway to achieve this result? 

Thank you for your time, 
Adam
Adam Webb
Top achievements
Rank 1
 answered on 14 Aug 2009
5 answers
205 views

I need to have Rad menu with vertical flow having scroll. I am writing the below given code.

 

<

 

telerik:RadMenu Flow="vertical" Height="200" EnableRootItemScroll="true" ID="RadMenu1" runat="server">

But this code simply collapses the IE. If I change the flow to Horizontal and specify the width instead of height every thing works fine with scroll.

Using Telerik trial version.

Any sugesstions.

 

Paul
Telerik team
 answered on 14 Aug 2009
4 answers
323 views
Hello,

I am having a problem and hopefully you can help me solve it.  I want to be able to open up a radwindow from the codebehind and use the radwindows onclientclose function to redirect a user to a different place on my website.  Can you help me out?

Kyle
Kyle Jones
Top achievements
Rank 1
 answered on 14 Aug 2009
5 answers
164 views
Why does the RadTimePicker allow you to enter characters (i.e. abcd) and then validate with a red border saying that its an invalid entry? Is there a way to not allow the user to type alpha characters at all? Only numeric characters? Seems like a pretty simple mask to me...

Thanks
Daniel
Telerik team
 answered on 14 Aug 2009
7 answers
342 views
Hi, I'm getting a javascript error when I put a RadDateTimePicker in to a PartialView.  I can't seem to get the calendar or time to pop-up.

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; Zune 3.0)
Timestamp: Wed, 3 Jun 2009 17:40:36 UTC


Message: Expected ':'
Line: 204
Char: 6375
Code: 0
URI: http://localhost:63299/MediaBar/Edit/11

If I keep it out of of partial view, it seems to work fine.  Here is the code of the partial view:

<%@ Control Language="C#" Inherits="MvcContrib.FluentHtml.ModelViewUserControl<IReleaseRetireable>" %>
<%@ Import Namespace="Company.Project.Data.Entities"%>
<%@ Import Namespace="Telerik.Web.UI.Editor.DialogControls"%>
<%@ Import Namespace="MvcContrib.FluentHtml"%>
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" /> 
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server" />

<%
    ReleaseDatePicker.DbSelectedDate = Model.ReleaseDate;
    RetireDatePicker.DbSelectedDate = Model.RetireDate;
%>
<fieldset>
    <legend>Release/Retire Dates</legend>
    <p>
        <label for="ReleaseDate">Release Date:</label>
        <telerik:RadDateTimePicker ID="ReleaseDatePicker" EnableViewState="false"
            runat="server" />
        <%= this.ValidationMessage(m => m.ReleaseDate)%>
    </p>
    <p>
        <label for="RetireDate">Retire Date:</label>
        <telerik:RadDateTimePicker ID="RetireDatePicker" EnableViewState="false"
            runat="server" />
        <%= this.ValidationMessage(m => m.RetireDate)%>
    </p>
</fieldset>

Here is the rendered javascript in question:

<script type="text/javascript">
//<![CDATA[
    Sys.Application.add_init(function(){$create(Telerik.Web.UI.RadTreeView, {"_scrollPosition":0,"_selectedValue":"","_skin":"Default","_uniqueId":"ctl00$rtvAdminSiteMap","clientStateFieldID":"ctl00_rtvAdminSiteMap_ClientState","collapseAnimation":"{\"duration\":200}","expandAnimation":"{\"duration\":200}","nodeData":[{"value":"Home Page","items":[{"value":"Media Bar","toolTip":"Media Bar"}],"toolTip":"Home Page"},{"value":"About Us","items":[{"value":"Sales Team","toolTip":"Sales Team"},{"value":"Careers","toolTip":"Careers"},{"value":"News and Press","toolTip":"News and Press"}],"toolTip":"About Us"},{"value":"Resources","items":[{"value":"Glossary","toolTip":"Glossary"},{"value":"Frequently Asked Questions","items":[{"value":"General","toolTip":"General"},{"value":"Metal","toolTip":"Metal"}],"toolTip":"Frequently Asked Questions"},{"value":"Product Literature","items":[{"value":"General Use","toolTip":"General Use"},{"value":"Specific Products","toolTip":"Specific Products"},{"value":"Reference Charts","toolTip":"Reference Charts"}],"toolTip":"Product Literature"}],"toolTip":"Resources"},{"value":"IMS In Use","items":[{"value":"User Stories","toolTip":"User Stories"}],"toolTip":"IMS In Use"},{"value":"Locations","items":[{"value":"Locations","toolTip":"Locations"}],"toolTip":"Locations"},{"value":"Resources","items":[{"value":"Support","toolTip":"Support"}],"toolTip":"Resources"}]}, null, null, $get("ctl00_rtvAdminSiteMap"));$create(Telerik.Web.UI.RadDialogOpener, {"_dialogDefinitions":{"FlashManager":{"SerializedParameters":"CzFKDgJaCx8WEUVNLGM0VARzBAQ4PkdQMDE3UwgPTnR5BSg1PRBqbGQGEi12KwgzEAkXJQUtITgkE2d5NHA8WgVINSAUOAZYHy4gUQoyTgdzFSs5OhAVbX8pJCN7Kj1ADQhSLD8zISEREVVBOXI0agFzKRsgT1MHCDU8JQczUklwEBU4ExN5TGQXIxxsODlODxtwETwzGxsnEWsHAW0rXjZsG0YvLkhGHiA0Fj8efGR4czgJCjoZSHAFOxNyFy4jPDdNGjI+EwAlExhiMU5XYzJKE0EjTGVeBlQNFTpXTn18cAooCj1mD0tiNDNsKRwVCAgWWylbH0MWEXtOAkggXjJjPR8XOgZfMVcGCjojTUB4LiQzPGV5SGQQGgZAKBQ+CjdCESssAA0hPXtfNhU8VzlOGxwQFkcCAjJ0VQg8aEBIcSQrChBqC0gbLxh3NDJIBw9RFSotOQMTLHtgMhU8ZDVJZAQsK2ZJAQ0SOD8PQUt+Fjg3CBIZbng4UyVzEjpPC218DTJZAAAWZUl5NhYORTVOG0MXTGlpHzMgDgswGgplcjAsPRB6QkgEER5zOxQRPxsfDDQsHxoTARhHBGIKWwJNZDIUKnlCMFQgNzs8aF9+LiQ0BQRUfHAEGhF7Lw8OERp8KjAFBxYlE11AOX0NHDdiIS8mJWlmBDEwUwsITmBJBDAIEA9AdkhiKBx2KhxNOTBJFTIFEx4QOmcCOU8sGQVPKQUiE3FrBSNxFAgiTnROFQ4YBRBUUUhiKBx2KhxNOTBWVwJZLSAgZ3dNN0kOZgNjF0I7K1dQBFYoUwgIfEFJcw4HCDpUUUs4Vxx4FjFJEgkXEzczLScnLH8DNGIWfwQUYAc7NU9+B1UgDAswZGRJcTAJCTlAWn8XJFp2EBAuEBtoFjQFBzojZmdlOmMCZgMWFy8hFkdQBSE8NAcOYANIBCgxEh9EdUg4OB92KhwvEGwfJzQ/AzgkZl1YNHEsfy1lbEo=","Width":"694px","Height":"440px","ClientCallbackFunction":"FlashManagerFunction"}},"_dialogUniqueID":"17422250-6ccd-45a3-bebd-3eeee11bc90d","additionalQueryString":"","clientStateFieldID":"ctl00_MainContent_FlashManagerDialogOpener_ClientState","handlerUrl":"../../Telerik.Web.UI.DialogHandler.axd","skin":"Default"}, null, null, $get("ctl00_MainContent_FlashManagerDialogOpener"));$create(Telerik.Web.UI.RadWindow, {"clientStateFieldID":"ctl00_MainContent_FlashManagerDialogOpener_Window_ClientState","iconUrl":"","left":"","minimizeIconUrl":"","name":"FlashManagerDialogOpener_Window","navigateUrl":"","showContentDuringLoad":false,"skin":"Default","top":""}, null, null, $get("ctl00_MainContent_FlashManagerDialogOpener_Window"));$create(Telerik.Web.UI.RadDateTimePicker, {"_PopupButtonSettings":{  ResolvedImageUrl : "", ResolvedHoverImageUrl : ""},"_TimePopupButtonSettings":{  ResolvedImageUrl : "", ResolvedHoverImageUrl : ""},"_popupControlID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_popupButton","_timePopupControlID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_timePopupLink","clientStateFieldID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_ClientState","focusedDate":"2009-06-03-00-00-00"}, null, {"calendar":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_calendar","dateInput":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_dateInput","timeView":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_timeView"}, $get("d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker"));$create(Telerik.Web.UI.RadDateInput, {"_enableOldBoxModel":false,"_focused":false,"_originalValue":"","_postBackEventReferenceScript":"__doPostBack(\u0027d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9$ReleaseDatePicker\u0027,\u0027\u0027)","_shouldResetWidthInPixels":true,"clientStateFieldID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_dateInput_ClientState","dateFormat":"M/d/yyyy h:mm tt","dateFormatInfo":{"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"AMDesignator":"AM","PMDesignator":"PM","DateSeparator":"/","TimeSeparator":":","FirstDayOfWeek":0,"DateSlots":{"Month":0,"Year":2,"Day":1},"ShortYearCenturyEnd":2029,"TimeInputOnly":false},"displayDateFormat":"M/d/yyyy h:mm tt","enabled":true,"incrementSettings":{InterceptArrowKeys:true,InterceptMouseWheel:true,Step:1},"styles":{HoveredStyle: ["width:100%;", "riTextBox riHover"],InvalidStyle: ["width:100%;", "riTextBox riError"],DisabledStyle: ["width:100%;", "riTextBox riDisabled"],FocusedStyle: ["width:100%;", "riTextBox riFocused"],EmptyMessageStyle: ["width:100%;", "riTextBox riEmpty"],ReadOnlyStyle: ["width:100%;", "riTextBox riRead"],EnabledStyle: ["width:100%;", "riTextBox riEnabled"]}}, null, null, $get("d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_dateInput"));$create(Telerik.Web.UI.RadCalendar, {"_DayRenderChangedDays":{},"_FormatInfoArray":[["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["January","February","March","April","May","June","July","August","September","October","November","December",],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",],"dddd, MMMM dd, yyyy h:mm:ss tt","dddd, MMMM dd, yyyy","h:mm:ss tt","MMMM dd","ddd, dd MMM yyyy HH\':\'mm\':\'ss \'GMT\'","M/d/yyyy","h:mm tt","yyyy\'-\'MM\'-\'dd\'T\'HH\':\'mm\':\'ss","yyyy\'-\'MM\'-\'dd HH\':\'mm\':\'ss\'Z\'","MMMM, yyyy","AM","PM","/",":",0],"_ViewRepeatableDays":{},"_ViewsHash":{d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_calendar_Top : [[2009,6,1], 1]},"_calendarWeekRule":0,"_culture":"en-US","_enableViewSelector":false,"_firstDayOfWeek":7,"_postBackCall":"__doPostBack(\u0027d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9$ReleaseDatePicker$calendar\u0027,\u0027@@\u0027)","clientStateFieldID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_calendar_ClientState","enabled":true,"monthYearNavigationSettings":["Today","OK","Cancel","Date is out of range.","False"],"skin":"Default","specialDaysArray":[],"stylesHash":{DayStyle: ["", ""],CalendarTableStyle: ["", "rcMainTable"],OtherMonthDayStyle: ["", "rcOtherMonth"],TitleStyle: ["", ""],SelectedDayStyle: ["", "rcSelected"],SelectorStyle: ["", ""],DisabledDayStyle: ["", "rcDisabled"],OutOfRangeDayStyle: ["", "rcOutOfRange"],WeekendDayStyle: ["", "rcWeekend"],DayOverStyle: ["", "rcHover"],FastNavigationStyle: ["", "RadCalendarMonthView RadCalendarMonthView_Default"],ViewSelectorStyle: ["", "rcViewSel"]},"useColumnHeadersAsSelectors":false,"useRowHeadersAsSelectors":false}, null, null, $get("d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_calendar"));$create(Telerik.Web.UI.RadTimeView, {"_ItemsCount":24,"_OwnerDatePickerID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker","_TimeOverStyleCss":"rcHover","_culture":"en-US","_timeFormat":"t","clientStateFieldID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_timeView_ClientState","itemStyles":{TimeStyle: ["", ""],AlternatingTimeStyle: ["", ""],HeaderStyle: ["", "rcHeader"],FooterStyle: ["", "rcFooter"],TimeOverStyle: ["", "rcHover"]}}, null, null, $get("d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_ReleaseDatePicker_timeView"));$create(Telerik.Web.UI.RadDateTimePicker, {"_PopupButtonSettings":{  ResolvedImageUrl : "", ResolvedHoverImageUrl : ""},"_TimePopupButtonSettings":{  ResolvedImageUrl : "", ResolvedHoverImageUrl : ""},"_popupControlID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_popupButton","_timePopupControlID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_timePopupLink","clientStateFieldID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_ClientState","focusedDate":"2009-06-03-00-00-00"}, null, {"calendar":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_calendar","dateInput":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_dateInput","timeView":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_timeView"}, $get("d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker"));$create(Telerik.Web.UI.RadDateInput, {"_enableOldBoxModel":false,"_focused":false,"_originalValue":"","_postBackEventReferenceScript":"__doPostBack(\u0027d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9$RetireDatePicker\u0027,\u0027\u0027)","_shouldResetWidthInPixels":true,"clientStateFieldID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_dateInput_ClientState","dateFormat":"M/d/yyyy h:mm tt","dateFormatInfo":{"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"AMDesignator":"AM","PMDesignator":"PM","DateSeparator":"/","TimeSeparator":":","FirstDayOfWeek":0,"DateSlots":{"Month":0,"Year":2,"Day":1},"ShortYearCenturyEnd":2029,"TimeInputOnly":false},"displayDateFormat":"M/d/yyyy h:mm tt","enabled":true,"incrementSettings":{InterceptArrowKeys:true,InterceptMouseWheel:true,Step:1},"styles":{HoveredStyle: ["width:100%;", "riTextBox riHover"],InvalidStyle: ["width:100%;", "riTextBox riError"],DisabledStyle: ["width:100%;", "riTextBox riDisabled"],FocusedStyle: ["width:100%;", "riTextBox riFocused"],EmptyMessageStyle: ["width:100%;", "riTextBox riEmpty"],ReadOnlyStyle: ["width:100%;", "riTextBox riRead"],EnabledStyle: ["width:100%;", "riTextBox riEnabled"]}}, null, null, $get("d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_dateInput"));$create(Telerik.Web.UI.RadCalendar, {"_DayRenderChangedDays":{},"_FormatInfoArray":[["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["January","February","March","April","May","June","July","August","September","October","November","December",],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",],"dddd, MMMM dd, yyyy h:mm:ss tt","dddd, MMMM dd, yyyy","h:mm:ss tt","MMMM dd","ddd, dd MMM yyyy HH\':\'mm\':\'ss \'GMT\'","M/d/yyyy","h:mm tt","yyyy\'-\'MM\'-\'dd\'T\'HH\':\'mm\':\'ss","yyyy\'-\'MM\'-\'dd HH\':\'mm\':\'ss\'Z\'","MMMM, yyyy","AM","PM","/",":",0],"_ViewRepeatableDays":{},"_ViewsHash":{d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_calendar_Top : [[2009,6,1], 1]},"_calendarWeekRule":0,"_culture":"en-US","_enableViewSelector":false,"_firstDayOfWeek":7,"_postBackCall":"__doPostBack(\u0027d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9$RetireDatePicker$calendar\u0027,\u0027@@\u0027)","clientStateFieldID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_calendar_ClientState","enabled":true,"monthYearNavigationSettings":["Today","OK","Cancel","Date is out of range.","False"],"skin":"Default","specialDaysArray":[],"stylesHash":{DayStyle: ["", ""],CalendarTableStyle: ["", "rcMainTable"],OtherMonthDayStyle: ["", "rcOtherMonth"],TitleStyle: ["", ""],SelectedDayStyle: ["", "rcSelected"],SelectorStyle: ["", ""],DisabledDayStyle: ["", "rcDisabled"],OutOfRangeDayStyle: ["", "rcOutOfRange"],WeekendDayStyle: ["", "rcWeekend"],DayOverStyle: ["", "rcHover"],FastNavigationStyle: ["", "RadCalendarMonthView RadCalendarMonthView_Default"],ViewSelectorStyle: ["", "rcViewSel"]},"useColumnHeadersAsSelectors":false,"useRowHeadersAsSelectors":false}, null, null, $get("d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_calendar"));$create(Telerik.Web.UI.RadTimeView, {"_ItemsCount":24,"_OwnerDatePickerID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker","_TimeOverStyleCss":"rcHover","_culture":"en-US","_timeFormat":"t","clientStateFieldID":"d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_timeView_ClientState","itemStyles":{TimeStyle: ["", ""],AlternatingTimeStyle: ["", ""],HeaderStyle: ["", "rcHeader"],FooterStyle: ["", "rcFooter"],TimeOverStyle: ["", "rcHover"]}}, null, null, $get("d3e2ba0a-9efb-455d-bba8-37b8d17eb2c9_RetireDatePicker_timeView"));});
//]]>
</script>

Also, it seems that part of this is rendered earlier in the page.  (I have two script managers - one in the master view, the other is required for the PartialView)

Nikolay Rusev
Telerik team
 answered on 14 Aug 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?