2017-04-11 4 views
0

내 페이지에 CascadingDropDown 컨트롤이 있습니다. 드롭 다운이 채워지면 일부 jquery 액션을 수행하려고합니다. documentation에 따르면 해당 목적으로 (채워진) 이벤트가 있습니다. 나는 나의 페이지에이 코드를 추가 : 내가 드롭 다운에게이 터지지 않 raise_populatedajaxcontroltoolkit 컨트롤이 채워질 때 CascadingDropDown 호출 메서드

<asp:DropDownList ID="listcat" runat="server" required></asp:DropDownList> 
      <ajaxToolkit:CascadingDropDown ID="cdlisteCategorie" TargetControlID="listcat" PromptText='Catégories' 
       ServicePath="../Webservice/CategorieService.asmx" ServiceMethod="GetCategories" Category="IDCATS" runat="server" LoadingText="Chargement..."></ajaxToolkit:CascadingDropDown> 

을 사용하는 방법 여기

function raise_populated() { 
    alert() 
} 

하고있다.

답변

0

나는 해결책 here

function pageLoad(sender, args) 
{ 
    var cdd = $find("behaviorIDofCDD"); 
    cdd.add_populated(onPopulated); 
} 
function onPopulated() 
{ 
    //any function to be called 
} 
을 발견했습니다