Should controls in RadGrid's CommandItemTemplate maintain the state. I have template below and after posting back controls revert to initial state. ViewState is not turned of on the page level or on the grid.
<CommandItemTemplate>
<div class="gridActions">
Notes
<asp:DropDownList ID="cmdFilterNoteType" runat="server" AutoPostBack="false" />
<asp:CheckBox ID="cmdShowAll" runat="server" AutoPostBack="true" OnCheckedChanged="cmdShowAll_CheckedChanged" Text="Show Latest Only" EnableViewState="true" />
</div>
</CommandItemTemplate>