2011-10-18 18 views
0

ModalPopUpExtenderの中の2つのasp:ListBoxコントロールをテーブル内に並べて、その中のすべてのクリックで、Chromeブラウザのリストボックスが画面上に再描画されたように吃音を起こします。 (この動作はChromeでのみ発生し、IE9、Safari、Firefoxでも同様にテストされています)。asp:ListBox stutter in chrome

コード:を使用して

<tr id="Tr1"> 
    <td> 
     <asp:ListBox ID="ListBoxAvailableChannels" runat="server" Width="300px" Height="500px" 
      DataSourceID="ObjectDataSourceAvailableChannels" DataTextField="Name" DataValueField="Id" 
      AutoPostBack="True"></asp:ListBox> 
     <asp:ObjectDataSource ID="ObjectDataSourceAvailableChannels" runat="server" SelectMethod="GetAvailableChannelList" 
      TypeName="PlayerDataProvider"></asp:ObjectDataSource> 
    </td> 
    <td> 
     <table> 
      <tr> 
       <td> 
        <asp:ImageButton ID="ImageButtonAddChannel" runat="server" ImageUrl="~/Icons/Arrows/right.png" /> 
       </td> 
      </tr> 
      <tr> 
       <td> 
        <asp:ImageButton ID="ImageButtonRemoveChannel" runat="server" ImageUrl="~/Icons/Arrows/left.png" /> 
       </td> 
      </tr> 
     </table> 
    </td> 
    <td> 
     <asp:ListBox ID="ListBoxPlayerChannels" runat="server" Width="300px" Height="500px" 
      DataSourceID="ObjectDataSourcePlayerChannels" DataTextField="Name" DataValueField="Id" 
      AutoPostBack="True"></asp:ListBox> 
     <asp:ObjectDataSource ID="ObjectDataSourcePlayerChannels" runat="server" SelectMethod="GetPlayerChannelList" 
      TypeName="PlayerDataProvider"> 
      <SelectParameters> 
       <asp:SessionParameter DefaultValue="" Name="p_playerId" SessionField="SelectedPlayerId" 
        Type="String" /> 
      </SelectParameters> 
     </asp:ObjectDataSource> 
    </td> 
</tr> 

:最新AjaxControlToolkitおよび.NET 4

スタッターの原因とどのように私はそれを取り除くかは何ですか?

答えて

0

設定AutoPostBack="True"を解決しました。

関連する問題