| <asp:Content runat="server" ContentPlaceHolderID="head"> |
| <script type="text/javascript"> |
| function test1() { |
| document.getElementById('div1').style.display = 'block'; |
| document.getElementById('div2').style.display = 'none'; |
| } |
| function test2() { |
| document.getElementById('div1').style.display = 'none'; |
| document.getElementById('div2').style.display = 'block'; |
| } |
| </script> |
| </asp:Content> |
| <asp:Content runat="server" ContentPlaceHolderID="content"> |
| <asp:LinkButton ID="LinkButton1" runat="server" OnClientClick="test1(); return false;" Text="test1" /><br /> |
| <asp:LinkButton ID="LinkButton2" runat="server" OnClientClick="test2(); return false;" Text="test2" /><br /> |
| <br /> |
| <div id="div1" style="background-color:White; width:100%; display:none;"> |
| 1 |
| <br /> |
| <rad:RadFileExplorer ID="file_explorer" runat="server" EnableCreateNewFolder="false" VisibleControls="Grid,Toolbar,ContextMenus,TreeView" |
| TreePaneWidth="150px" Width="100%" Configuration-MaxUploadFileSize="1024000" AllowPaging="false" /> |
| <br /> |
| |
| </div> |
| <div id="div2" style="background-color:White; width:100%; display:none;"> |
| 2 |
| <br /> |
| <rad:RadFileExplorer ID="RadFileExplorer1" runat="server" EnableCreateNewFolder="false" VisibleControls="Grid,Toolbar,ContextMenus,TreeView" |
| TreePaneWidth="150px" Width="100%" Configuration-MaxUploadFileSize="1024000" AllowPaging="false" /> |
| <br /> |
| |
| </div> |
| </asp:Content> |
| protected void Page_Load(object sender, EventArgs e) |
| { |
| string[] paths = new string[] { "~/templates/" }; |
| file_explorer.Configuration.ViewPaths = paths; |
| file_explorer.Configuration.UploadPaths = paths; |
| file_explorer.Configuration.DeletePaths = paths; |
| /* 2nd explorer */ |
| string[] p_paths = new string[] { "C:\\documents\\candidats\\" }; |
| RadFileExplorer1.Configuration.ViewPaths = p_paths; |
| RadFileExplorer1.Configuration.UploadPaths = p_paths; |
| RadFileExplorer1.Configuration.DeletePaths = p_paths; |
| RadFileExplorer1.Configuration.ContentProviderTypeName = typeof(CandidatFileSystemProvider).AssemblyQualifiedName; |
| GridTemplateColumn col_taille_ko = new GridTemplateColumn(); |
| col_taille_ko.HeaderText = "Taille"; |
| col_taille_ko.SortExpression = "Taille_ko"; |
| col_taille_ko.UniqueName = "Taille_ko"; |
| col_taille_ko.DataField = "Taille_ko"; |
| col_taille_ko.ItemStyle.Width = col_taille_ko.HeaderStyle.Width = Unit.Pixel(100); |
| col_taille_ko.ItemStyle.HorizontalAlign = col_taille_ko.HeaderStyle.HorizontalAlign = HorizontalAlign.Right; |
| RadFileExplorer1.Grid.Columns.Add(col_taille_ko); |
| GridTemplateColumn col_date = new GridTemplateColumn(); |
| col_date.HeaderText = "Date de création"; |
| col_date.SortExpression = "Date"; |
| col_date.UniqueName = "Date"; |
| col_date.DataField = "Date"; |
| col_date.ItemStyle.Width = col_date.HeaderStyle.Width = Unit.Pixel(150); |
| col_date.ItemStyle.HorizontalAlign = col_date.HeaderStyle.HorizontalAlign = HorizontalAlign.Center; |
| RadFileExplorer1.Grid.Columns.Add(col_date); |
| } |

It's likely that we'll be purchasing the full licensed controls, but it would be good to know that if these bugs exists in the full version also, that they will be resolved.
Thanks,
Jason.
Hi. I'm working with Sitefinity and using there two RadDatePickers. I need to have next action
1. Select date in the first raddatepicker.
2. Set selected date in the 2-d raddatepicker = 1-t raddatepicker date + 1 day using client side javascript
In IE and Opera it works pretty good ,but in Mozilla have problems. Whenexecuting event _setInputDate raizes validation and no data selected. I have tried to set DateInput-CausesValidation="false" ,but nothing happends with and without this attribute.
Here the code
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
<script type="text/javascript">
function dateSelected(sender, args) {
var datePicker = $find("<%= InprDeparture.ClientID %>");
var date = args._newDate;
datePicker._setInputDate(new Date(date.getYear(), date.getMonth(), date.getDate() + 1));
}
</script>
</telerik:RadCodeBlock>
<h5>Arrival</h5>
<telerik:RadDatePicker ID="InprArrival" Style="vertical-align: middle;" Width="160px" MinDate="2006-02-01" runat="server" MaxDate="2099-12-16">
<ClientEvents OnDateSelected="dateSelected" />
</telerik:RadDatePicker>
<h5>Departure</h5>
<telerik:RadDatePicker DateInput-CausesValidation="false" ID="InprDeparture" Style="vertical-align: middle;" Width="160px" MinDate="2006-02-01" runat="server" MaxDate="2099-12-16" >
</telerik:RadDatePicker>
<telerik:RadCalendar></telerik:RadCalendar>
</div>
</form>
</body>
</html>

| <telerik:RadWindow ID="BlaControl" runat="server" |
| ShowContentDuringLoad="false" |
| ReloadOnShow="true" |
| VisibleStatusbar="false" |
| AutoSize="true" |
| Behaviors="Close"> |
| </telerik:RadWindow> |
| <telerik:RadCodeBlock ID="BlaScript" runat="server"> |
| <script type="text/javascript"> |
| function rad_ItemClicked_Handler(sender, args) { |
| var nRadWindow = $find('<%=BlaControl.ClientID%>'); |
| nRadWindow.setUrl('Test.html'); |
| nRadWindow.show(); |
| } |
| </script> |
| </telerik:RadCodeBlock> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| <html lang="fr" xml:lang="fr"> |
| <head> |
| <title>Test (France)</title> |
| </head> |
| <body><center> |
| <script language="JavaScript" type="text/javascript"> |
| function Test_Progress(progress) { |
| window.status=progress; // An example of how the progress value can used |
| } |
| </script> |
| Coucou4 |
| </center> |
| </body> |
| </html> |
| �������4�ON�0��z��j�Te�/�i)� V�$�?ȵ#g�!NƂ#q�ݽ��<��~�����Q�^@A[ �Nj�u��i��<���U|���w 2eB�/�����q�4��L=mr?�{e�lyRw/���ÁߥH��e��~+gǪ�H�X%(`5��J�.��R�R+ ]���1��N���#�T���[R'�����"ǀ݈��t�}T-!�oq?�3�raK+���微�� ��:�1|Д*ՍW� [�����^l+��3(tT G`'�EH�[c:|�K���#mm�=\�;��Kÿ�7�{p� |
| <telerik:RadComboBox ID="RadComboBox1" runat="server" AllowCustomText="True" EmptyMessage="Choose Data" EnableLoadOnDemand="True" ShowMoreResultsBox="true" |
| EnableVirtualScrolling="true" Filter="StartsWith" AutoPostBack="True" DataTextField="Name" DataValueField="Name"> |
| </telerik:RadComboBox> |
| Protected Sub RadComboBox1_ItemsRequested(ByVal sender As Object, ByVal e As RadComboBoxItemsRequestedEventArgs) Handles RadComboBox1.ItemsRequested |
| Dim data As DataTable = GetData(e.Text) |
| Dim itemOffset As Integer = e.NumberOfItems |
| Dim endOffset As Integer = Math.Min(itemOffset + ItemsPerRequest, data.Rows.Count) |
| e.EndOfItems = endOffset = data.Rows.Count |
| For i As Integer = 0 To data.Rows.Count - 1 |
| RadComboBox1.Items.Add(New RadComboBoxItem(data.Rows(i)("Name").ToString(), data.Rows(i)("Name").ToString())) |
| Next |
| e.Message = GetStatusMessage(endOffset, data.Rows.Count) |
| End Sub |