Hi,
I'm having a problem with the Rebind() function in VB to clear the search content. Everytime I tried to step through the code, it showed that VB did run through the Rebind() function but returned nothing. Here's my code:
In HTML:
In Javascript:
In VB:
Like I said, I tried to step through the code thoroughly but couldn't find anything. I'm still learning all this so any help would be greatly appreciated. Thank you!
I'm having a problem with the Rebind() function in VB to clear the search content. Everytime I tried to step through the code, it showed that VB did run through the Rebind() function but returned nothing. Here's my code:
In HTML:
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RadAjaxManager1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="PickCarrierRG" LoadingPanelID="RadAjaxLoadingPanel1" /> </UpdatedControls> </telerik:AjaxSetting></telerik:RadAjaxManager>In Javascript:
function clearsearchvalues(fromRWyesno)
document.getElementById("<%= HiddenTB_SearchPartyID.ClientID %>").value = "0"; document.getElementById("<%= HiddenTB_SearchFree.ClientID %>").value = "0"; document.getElementById("<%= HiddenTB_SearchRadius.ClientID %>").value = "0"; document.getElementById("<%= HiddenTB_SearchCityID.ClientID %>").value = "0"; var PickCarrierRSB = $find("<%= PickCarrierRSB.ClientID %>"); PickCarrierRSB.clear(); var CityRCB = $find("<%=CityRCB.ClientID%>"); CityRCB.get_items().clear(); CityRCB.set_value(""); CityRCB.set_text("");
if ( fromRWyesno == "yes" ) { $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("rebindPickCarrierRG"); }}function onJobRWClose() {
document.getElementById("<%= HiddenTB_HistoryID.ClientID %>").value = "0"; clearsearchvalues("yes");}
In VB:
Protected Sub RadAjaxManager1_AjaxRequest(ByVal sender As Object, ByVal e As Telerik.Web.UI.AjaxRequestEventArgs) Handles RadAjaxManager1.AjaxRequest Dim myArg As String = e.Argument Dim myAction As String = CustGenClass.f_Split_ByComma(myArg, 1) Dim my1st As String = CustGenClass.f_Split_ByComma(myArg, 2) Dim myPartyID As String = Me.HiddenTB_PartyID.Text
If myArg = "rebindPickCarrierRG" Then PickCarrierRG.Rebind() End IfEnd SubLike I said, I tried to step through the code thoroughly but couldn't find anything. I'm still learning all this so any help would be greatly appreciated. Thank you!