Hi,
I would like to use RadCalendar to present a view of a future month, but without a specific date in that month being pre-selected or having focus.
When I don't set the FocusedDate property and/or the SelectedDate property, the calendar always displays the current month and not the specified future one.
When I do set the FocusedDate property and/or the SelectedDate property, that date is obviously pre-selected which I don't want.
How can I set RadCalendar to display a future month without selecting a date within that month?
Best regards, Marja Ribbers
There seems to be a problem loading jquery 1.11.3 in the new release .1111.
2015.3.930.40 works fine. 2015.3.1111.40 will generate the "JQuery not defined"-error
Is this by design? Have tried disabling the embedded jquery as well, without luck so far.

I have a RadGrid with a handful of GridTemplateColumns which have EditItemTemplates with RadDateTimePickers. The content is loaded dynamically on the backend and the MasterTableView's EditMode="PopUp". When selecting the edit button, if a date is within the min/max of 1980-2099, the popup displays appropriately. When a value is not within the min/max values, the page flashes and the edit popup does not display.
I've tried the following:
- Modified the Min/Max of the raddatepickers in the edititemtemplates
- Modified the Min/Max of the raddatepickers when assigning the data in the ItemCreated event and the picker's prerender event.
- Added SkipMinMaxDateValidationOnServer to the item in the edititemtemplate as well as in the ItemCreated event.
- Added DateInput-SkipMinMaxDateValidationOnServer to the item in the edititemtemplate as well as in the ItemCreated event.
None of these fixes the problem and allows the edit popup to display, at all. When I use a raddatetimepicker outside of the radgrid I'm able to modify the max/min on the ASPX as well as the code and get the expected results. Is there something I'm missing?
Thanks,
Chuck
Hi!
I'm currently using a Lightbox databound to a DataTable to display all the images in a directory. I'd like to add a RadSocialShare control to the Lightbox but I'm not sure how to use it. I've looked into using custom templates, but as soon as I do that the built-in databound functionality of the Lightbox control breaks and I can't figure out how to bind the controls to it since binding to the reserved names doesn't seem to work.
Could you provide me with some examples/help on this?
Thanks!
korean typing error in internet explorer

I have an aspx page with two telerik RadDockZones so that when the page is expanded I have two columns on the page displaying a list of RadDocks. I need to convert to this to one column (or no columns really) where the RadDockzone and the RadDocks take up the width of the page. It was easy to make the display one (or no) column -- I just removed the 2nd RadDockZone tag (and associated tags) so that the RadDocks on the right side of the page are now directly under the RadDocks on the left side of the page. The problem I am having is that I need the RadDockZone and the RadDocks to take up the width of the page. How to do this? I was able to hardcode a value in the width of the RadDockZone (but that is hardcoded -- I need auto) and the RadDocks reference a class in Dock.Custom.css. This .css file is reference by several other pages in the web app. I will list a bit of the markup for the RadDockZone/RadDock and list the content of the Dock.Custom.css file. I would appreciate any suggestions how to proceed from here on making the RadDockZon/RadDocks auto width (without affecting all the other pages in the web app)
................................some markup from the .aspx page -- Skin ="Custom" this is the css class for the RadDock
<div style="float: left; padding-left: 5px;">
<telerik:RadDockZone ID="LeftRadDockZone" FitDocks="False" Width="955px" Height="610px" runat="server">
<telerik:RadDock ID="PersonalInformationRadDock" Title="Personal Information" DefaultCommands="ExpandCollapse"
DockMode="Docked" EnableRoundedCorners="True" Collapsed="False" EnableEmbeddedSkins="False"
Skin="Custom" EnableDrag="False" runat="server">
<ContentTemplate>
<table id="ExecutiveDescriptionTable">
<tr>
..........
And here is the .css file with the custom class -- how to make RadDockZone/RadDock autowidth?
...............................................
.RadDock_Custom
{
height: 220px !important;
width: 640px !important;
}
.RadDock_Custom .rdMiddle .rdLeft,
.RadDock_Custom .rdMiddle .rdRight {
background-image: url('../Images/VerticalSprite.gif'); }
.RadDock_Custom .rdTop .rdLeft,
.RadDock_Custom .rdTop .rdRight,
.RadDock_Custom .rdTop .rdCenter,
.RadDock_Custom .rdBottom .rdLeft,
.RadDock_Custom .rdBottom .rdRight,
.RadDock_Custom .rdBottom .rdCenter {
background-image: url('../Images/HorizontalSprite.png');
}
.RadDock_Custom .rdCenter .rdCommands a span {
background-image: url('../Images/CommandSprite.gif') }
.RadDock_Custom .rdMiddle .rdCenter,
.RadDock_Custom .rdBottom .rdCenter {
background-color: white; }
.RadDock_Custom .rdTitleBar em {
color: white !important;
font-size:12pt !important;
font-family:"Segoe UI", Arial, sans-serif;
font-weight:bold !important;}
.RadDock_Custom .rdContent
{
background-repeat:repeat-y;
background-position:left;
margin:10px auto;
height:190px !important;
width:620px !important;
color:black !important;
font-family:"Segoe UI", Arial, sans-serif;
line-height:16pt !important;
text-align:justify;
font-size:12px !important;
vertical-align:bottom !important}
.RadDock_Custom .rdTitleBar, .rdTitle {
background:#476bb3;}
...........................................
Hi,
I am attaching some screen shots here .
Screenshot 1 - > FTA tab is selected. We can see other child tabs in it ,FTA EFTA and FTA Japan.
FTA EFTA has Rad pane . Loading "html" page to Radpane contenturl .it is ok . Then this html contains another <anchor tags> links when we click on it .it will display another html . But I see that it is not loading to that Radpane . Need to know which html page (url of the html ) is displaying on the click of "Report button" on the top of the page in blue header . how can I achieve it using "javascript" ?
can anyone help?

For the life of me, I've been trying to search of a way to manually initialize a radcombobox. I'm able to initialize it via the ItemsRequested event like so
Public Sub IndustryAssigment_ItemsRequested(sender As Object, e As RadComboBoxItemsRequestedEventArgs)Dim IlkIndustryTaxonomyTier3Source = New List(Of lkIndustryTaxonomyTier3)IlkIndustryTaxonomyTier3Source = _IlkIndustryTaxonomyTier3Manager.List()_view.GetrcbMacroOTHemscott3.DataTextField = "OTHemscott3"_view.GetrcbMacroOTHemscott3.DataValueField = "OTHemscott3PK"_view.GetrcbMacroOTHemscott3.DataSource = IlkIndustryTaxonomyTier3Source_view.GetrcbMacroOTHemscott3.DataBind()End SubBut this is only called upon firing the said event.
Is there a way to manually fire this event via javascript as this combobox is inside a radwindow that is being opened via another javascript call.
Regards,
Nick
<asp:formview id="FormView1" runat="server" enableviewstate="false">
<ItemTemplate>
<%# Eval("StreetAddress") %>
</ItemTemplate>
</asp:formview>
<telerik:RadWindow
ID="EditPermits"
runat="server"
Height="290px"
Width="220px"
Top="50px"
Left="700px"
ReloadOnShow="true"
ShowContentDuringLoad="false"
Modal="true"
OnClientClose="clientClose">
</telerik:RadWindow>
<script>
function clientClose() {
var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>");
ajaxManager.ajaxRequest();
}
</script>
<telerik:RadAjaxManager
ID="RadAjaxManager1" runat="server"
OnAjaxRequest="RadAjaxManager1_AjaxRequest">
</telerik:RadAjaxManager>
protected void RadAjaxManager1_AjaxRequest(object sender, Telerik.Web.UI.AjaxRequestEventArgs e) { FormView1.DataBind(); }