| <telerik:RadComboBox ID="AreaOfInterestComboBox" runat="server" AutoPostBack="false" CssClass="areaOfInterestComboBox" Skin="Bazaar" EnableEmbeddedSkins="false" OnDataBound="AreaOfInterestComboBox_ItemDataBound"> |
| <ItemTemplate> |
| <asp:CheckBox runat="server" ID="cbCategory" Text="" AutoPostBack="false" onclick="stopPropagation(event);" /> |
| <%# DataBinder.Eval(Container, "Text") %> |
| </ItemTemplate> |
| </telerik:RadComboBox> |
| protected void AreaOfInterestComboBox_ItemDataBound(object sender, Telerik.Web.UI.RadComboBoxItemEventArgs e) |
| { |
| } |
Cant get this to work, why? I need to be able to make the CheckBoxed Checked or unchecked in the Event OnItemDataBound, Is it possible?
"Compiler Error Message: CS0123: No overload for 'AreaOfInterestComboBox_ItemDataBound' matches delegate 'System.EventHandler'"
And Visual Studio can't resolva "RadComboBoxItemDataBoundEventArgs", cant use namespace Telerik.WebControls!