私の問題は、Obout Comboboxの選択されたインデックス変更イベントがまったく発生しないことです。Obout Combobox selected Index changedイベントが動作しない
以下の私のコードを参照してください:
<obout:ComboBox ID="ddPractice" runat="server" Width="350" MenuWidth="650" Height="180"
DataTextField="LocationText" DataValueField="LocationID" EmptyText="Search By Practice Name/Code/PostCode"
EnableLoadOnDemand="true" EnableVirtualScrolling="true" AutoValidate="true" AutoPostBack="true" AllowCustomText="false"
TabIndex="11">
<HeaderTemplate>
<div class="header" style="width: 290px;">
Practice
</div>
<div class="header" style="margin-left: 0px; width: 90px;">
PostCode
</div>
<div class="header" style="margin-left: 0px; width: 90px;">
Practice Code
</div>
<div class="header" style="margin-left: 0px; width: 100px;">
PCT
</div>
</HeaderTemplate>
<ItemTemplate>
<div class="item" style="width: 290px;">
<%# Eval("LocationName")%>
</div>
<div class="item" style="margin-left: 0px; width: 90px;">
<%# Eval("PostCode")%>
</div>
<div class="item" style="margin-left: 0px; width: 90px;">
<%# Eval("PracticeCode")%>
</div>
<div class="item" style="margin-left: 0px; width: 100px;">
<%# Eval("PCTName")%>
</div>
</ItemTemplate>
</obout:ComboBox>
<asp:TextBox ID="txtPractice" runat="server" Width="250px" Height="21" Visible="false" />
コード
Private Sub ddPractice_SelectedIndexChanged(sender As Object, e As Obout.ComboBox.ComboBoxItemEventArgs) Handles ddPractice.SelectedIndexChanged
If ddPractice.SelectedValue = "685" Then
txtPractice.Visible = True
End If
End Sub
の後ろに、私は私がで同様の質問を見てきましたコンボボックス
Private Sub Practice_LoadingItems(sender As Object, e As Obout.ComboBox.ComboBoxLoadingItemsEventArgs) Handles ddPractice.LoadingItems
Dim data As DataTable = GetPractices(e.Text, e.ItemsOffset, 10)
Dim combobox As Obout.ComboBox.ComboBox = CType(sender, Obout.ComboBox.ComboBox)
combobox.DataSource = data
combobox.Items.Clear()
combobox.DataBind()
e.ItemsLoadedCount = e.ItemsOffset + data.Rows.Count
e.ItemsCount = GetPracticesCount(e.Text)
End Sub
にアイテムをロードする機能をも持っていますスタックのオーバーフローが、それはdoesnot任意のanswers.Alsoを持っていないので、私は私にコメントすることはできませんAenough評判がないt。
助けてください。
ハンドラをSelectedIndexChangedイベントに追加する場所を表示できますか?あなたはどこかにcombobox.SelectedIndexChanged + = dbPractice_SelectedIndexChangedを持たなければなりません。 –
私は申し訳ありません他のどこにもハンドラを追加していません.. –
このイベントは何か理由が考えられますか? –