午後すべて、ASP.Net CollapsiblePanelextenderコントロール
私はテーブル内ASP.netでcollapsiblePanelextenderを設定して使用することができる場合、私はwondingています。私はこれを、私が作成している会議システムの議事録に使用するつもりです。私は次のコードを持っていて、pnlPresenterとpnlTimeをpnlHeaderとともにCollapseControlIDに追加すれば、これを動作させることができますが、私は傾けることができると考えました。
誰にも他の提案がありますか?事前
よろしくで
<table width="100%">
<tr>
<td class="style3">Topic</td>
<td class="style2">Presenter</td>
<td>Time Alloted</td>
</tr>
<tr >
<td class="style1" colspan="3">
<asp:Panel ID="pnlHeader" runat="server" CssClass="cpHeader" Width="228%" Height="18px">
1. Agenda Item 1
<asp:Image ID="ImgToggle" runat="server" ImageUrl="~/Images/collapse.jpg" ImageAlign="Middle" />
</asp:Panel>
</td>
</tr>
<tr>
<td class="style3">
<asp:Panel ID="pnlInfo" runat="server" CssClass="cpBody" >
The Agenda topic details goes within here, The Agenda topic details goes within here,
The Agenda topic details goes within here, The Agenda topic details goes within here,.
</asp:Panel>
</td>
<td class="style2">
<asp:Panel ID="pnlPresenter" runat="server" CssClass="cpBody" Width="107px">
Presenters Name
</asp:Panel>
</td>
<td class="style2">
<asp:Panel ID="pnlTime" runat="server" CssClass="cpBody" Width="107px">
Time
</asp:Panel>
</td>
</tr>
</table>
多くのおかげ ベティ
感謝を:リピータによってレンダリングの行の中に、あなたは、ヘッダとして議題、および拡張されていますパネル等の議題項目の詳細を持つことができます/エクステンダーを使用して崩壊しました。私はあなたが提案したようにリピーターを使用しており、これは治療に役立ちます。 – Betty