I have a combo with Autopostback = false. When I click on the small arrow to pull the contents down, its triggers a postback, but if I click the text area, its does NOT cause a post back (which is what i want). This ONLY happens then RenderMode="Lightweight"
The combo is in the <EditItemTemplate> of a radgrid,
<telerik:GridTemplateColumn HeaderText="Days" ItemStyle-Width="240px" >
<ItemTemplate>
<%#DataBinder.Eval(Container.DataItem, "Status")%>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadComboBox RenderMode="Lightweight" runat="server" ID="RadComboBox1" DataTextField="Day"
DataValueField="DayID" OnDataBound="RadComboBox1_DataBound" >
</telerik:RadComboBox>
</EditItemTemplate>
</telerik:GridTemplateColumn>