私が抱えている問題は、ユーザーがチェックボックスをオンにして下にスクロールすると、約1秒後にユーザーがスクロールする前に垂直位置が戻ることです。
リピーター内にチェックボックスがあり、チェックボックスの自動投稿がtrueに設定されており、チェックされている/チェックされていない場合にコードを実行します。また、maintainscrollbackposition を true にしています。
誰でも助けてもらえますか?これは修正できますか?
<asp:Repeater ID="rpFactorLeadershipStrengths" OnItemDataBound="rpFactorLeadershipStrengths_OnItemDataBound" runat="server">
<ItemTemplate>
<label class="checkbox">
<asp:CheckBox ID="cbLeadershipStrengthStatement" AutoPostBack="true" OnCheckedChanged="cbLeadershipStrengthStatement_OnCheckedChanged" runat="server" />
<small><asp:Literal ID="ltLeadershipStrengthStatement" runat="server" /></small>
</label>
<asp:HiddenField ID="hfLeadershipStrengthStatementId" runat="server" />
</ItemTemplate>
</asp:Repeater>