以下に示すように、GridView に AJAX AutoCompleteExtender があります。
<asp:GridView
ID="GV1"
runat="server"
AllowPaging="True"
OnPageIndexChanging="GV1_OnPageIndexChanging"
OnRowCommand="GV1_RowCommand">
...
<asp:TextBox
ID="txt1"
runat="server"
onkeyup = "SetContextKey()">
</asp:TextBox>
<cc1:AutoCompleteExtender
ID="AutoCompleteExtender1"
runat="server"
TargetControlID="txt1"
ServiceMethod="GetACEList"
ServicePath="AutoComplete.asmx"
UseContextKey = "true"
MinimumPrefixLength="1"
EnableCaching="true"
CompletionSetCount="1"
CompletionInterval="100"
CompletionListCssClass="autocomplete_completionListElement"
CompletionListItemCssClass="autocomplete_listItem"
CompletionListHighlightedItemCssClass="autocomplete_highlightedListItem">
</cc1:AutoCompleteExtender>
...
</asp:GridView>
コンテキスト キーを設定しようとすると AutoCompleteExtender
、サーバー側だけでなくクライアント側でもアクセスできません。
クライアント側で、私は試しました:
function SetContextKey() {
$find('AutoCompleteExtender1').set_contextKey($get("<%=ddlCountry.ClientID%>").value);
}
しかし、JavaScript は「AutoCompleteExtender1」オブジェクトを見つけることができません。これは、生成された HTML に多数の「AutoCompleteExtender1」オブジェクトがあり、それぞれに一意の ID があるためであることがわかりました。
その後、この記事
を見つけ、サーバー側でコンテキスト キーを設定してみました。
protected void ddlCountry_OnSelectedIndexChanged(object sender, EventArgs e) {
AutoCompleteExtender1.ContextKey = ddlCountry.SelectedValue;
}
しかし、コードのコンパイルは次のエラーで失敗します:
The name 'AutoCompleteExtender1' does not exist in the current context
質問:コンテキスト キーを設定できるように、ドロップダウンの選択インデックスの変更時にオブジェクト
にアクセスするにはどうすればよいですか?AutoCompleteExtender1