
I have a RibbonBar button that when click a RadWindowManager.RadConfirm window opens up. After the "Ok" button is
click the RadAjaxManager1_AjaxRequest in the code behind is not being fired. However, the javascript is being fired
and returns no errors
the HTML markup and javascript is setup as follows:<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="DailyReportsControl.ascx.vb" Inherits="FXWB.DailyReportsControl" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %> <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> </telerik:RadAjaxManager> <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"> <script type="text/javascript"> //<![CDATA[ function alertCallBackFn(arg) { return false; } function confirmCallBackFn(arg) { var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>"); if (arg != null) { //If user confirms they want to clear all signatures, call server side method if (arg == true) { if (ajaxManager != null) { ajaxManager.ajaxRequest(1); return false; } } //If user cancels the clear all signatures, then simply return else if (arg == false) { if (ajaxManager != null) { return false; } } } } //]]> </script> </telerik:RadCodeBlock> <telerik:RadWindowManager ID="RadWindowManager1" runat="server"> </telerik:RadWindowManager>
The code-behind loads up other controls dynamically on the page (there is another page identical to this one and the AjaxRequest is firing on that one).
The code-behind for the Request is as follows:
Protected Sub RadAjaxManager1_AjaxRequest(ByVal sender As Object, ByVal e As Telerik.Web.UI.AjaxRequestEventArgs) Handles RadAjaxManager1.AjaxRequest Select Case e.Argument Case "1" MyBase.OnDelete(ucFolderList.ListType, ucFolderList.ucFolderControl.objFolder.strFolderType, ucFolderList.SelectedItems) MyBase.OnDelete(ucSubfolders.ListType, ucSubfolders.ucFolderControl.objFolder.strFolderType, ucSubfolders.SelectedItems) Response.Redirect(Request.Url.ToString()) End Select End Sub
Why is the RadAjaxManager1_AjaxRequest not firing after the confirm button click?
RestrictionZoneID value set to a div tag
please helpt
<
telerik:GridDateTimeColumn DataField="Date_input" HeaderText="Date"
UniqueName="Date_input" ReadOnly ="true"
DataType="System.DateTime">
<ItemStyle Width="130px" />
</telerik:GridDateTimeColumn>
OR
<
telerik:GridDateTimeColumn DataField="Date_input" HeaderText="Date"
UniqueName="Date_input" ReadOnly ="true"
DataFormatString="{0:dd/MM/yyyy}" DataType="System.DateTime">
<ItemStyle Width="130px" />
</telerik:GridDateTimeColumn>
In my MSSQL database it is a datetime value ex : 20/01/2009 11:20:10
My problem it is when a put exat date value in filter field, only date ... that don't work... per exemple : 20/01/2009, my row with 20/01/2009 11:20:10, not display ...
i try http://www.telerik.com/help/aspnet-ajax/grdfilteringfordatetimecolumnwithdataformatstring.html for other date format but i is not ... that work when i make greatthan filter .... i suppose that 20/01/2009 11:20:10 is not same than 20/01/2009 , it is correct in fact ...
Do you have a solution for have results with 20/01/2009 ?