I have a combobox:
<ext:ComboBox ID="cbGroup" runat="server" Width="150"
OnItemSelected="cbGroup_ItemSelected">
</ext:ComboBox>
and a method:
protected void cbGroup_ItemSelected(object sender, EventArgs e)
{
FilterItemSelected(this, new EventArgs());
}
when the item in the combobox is changed the method isnt triggered.
what am i missing?