or
Hi friends
I have the function to compare the two date on "Onpopupclosing",
after comparing two date I displayed the message and after closing that message,
I want to set the initial date to that datepicker not selected date.
please help me

<telerik:RadComboBox ID="rcbProducts" runat="server" Width="300px" Height="300px" EnableLoadOnDemand="true" DataTextField="ProductCodeAndDesc" DataValueField="LogisticProductKey" Font-Names="Arial" Font-Size="XX-Small" Skin="Windows7" EmptyMessage="- please select a product -" Filter="Contains"> <ItemTemplate> <table> <tr> <td> <asp:Label ID="lblProductName" Text='<%# Bind("ProductCodeAndDesc") %>' runat="server"></asp:Label> </td> <td style="text-align: right"> <asp:TextBox ID="txtIntervalDays" ValidationGroup="vgNumeric" Width="50px" MaxLength="5" Text='<%# Bind("RepeatIntervalDays") %>' runat="server"></asp:TextBox> <asp:Button ID="btnSaveIntervalDays" Text="Save" OnClick="btnSaveIntervalDays_Click" runat="server" /> <asp:Button ID="btnTest" Text="TEst" OnClick="btnTest_Click"
runat="server" /> </td> </tr> </table> </ItemTemplate> </telerik:RadComboBox>Protected Sub btnTest_Click(ByVal sender As Object, ByVal e As EventArgs)Protected Sub btnSaveIntervalDays_Click(ByVal sender As Object, ByVal e As EventArgs)<telerik:RadAsyncUpload ID="RadAsyncUpload1" runat="server" OnClientFileUploadFailed="RadAsyncUploadOnUploadFailed" OnClientFileSelected="RadAsyncUploadOnFileSelected" OnClientFileUploaded="RadAsyncUploadOnFileUploaded" OnClientFileUploadRemoved="RadAsyncUploadOnUploadRemoved"> <Localization Select="<%$ Resources:Localization, AttachFile %>" /> <Localization Cancel="<%$ Resources:Localization, Cancel %>" /> <Localization Remove="<%$ Resources:Localization, Remove %>" /> </telerik:RadAsyncUpload>Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load 'Dim UserName As String = Request.QueryString("UserName") Dim UserName As String = "Test" lbl_UserName.Text = UserName If Not IsPostBack Then Dim results As New ArrayList() Dim context As New PrincipalContext(ContextType.Domain, "Fred_NT") Dim p As UserPrincipal = UserPrincipal.FindByIdentity(context, IdentityType.SamAccountName, UserName) Dim groups = p.GetAuthorizationGroups() For Each group In groups results.Add(group.Name) Next rlb_MemberGroups.DataValueField = ???????? rlb_MemberGroups.DataSource = results rlb_MemberGroups.DataBind() End If Label1.Visible = FalseEnd SubAlso, if i set DisablePlugins="true", the dialog appears but file fails to load correctly and give red light.
