0

データベース テーブルにバインドされたグリッドビューがありますが、使用する必要がある css は html:table 用に設計されています。与えられたスタイルシートで表示できるように、グリッドビューをhtmlテーブルに変換する簡単な方法があるかどうか疑問に思っていました。

ありがとう

これは、私のパートナーがモックアップ用に書いた html テーブルのサンプルです。スタイルの適用方法をエミュレートしたいと思います。

<div class="content1">


 <table class="yep">
<thead>
    <tr>
      <th>Case #</th>
      <th>Unit #</th>
      <th>Date</th>
      <th>Type of Call</th>
      <th>Gender</th>
      <th>Age</th>
      <th>View PCR</th>
      <th><button class="btn">Create Incident</button></th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>123456788</td>
      <td>102935734</td>
      <td>07/28</td>
      <td>Critical Care</td>
      <td>Male</td>
      <td>25</td>
      <td><a class="btn em" href="table_view.html">View PCR</a></td>
      <td class="check"><input type="checkbox"></td>
    </tr>

ここに私のグリッドビューがあります:

       <asp:GridView ID="GridView1" runat="server" CssClass="yep" AutoGenerateColumns="False" DataKeyNames="Case #" DataSourceID="SqlDataSource1">
    <Columns>
        <asp:BoundField DataField="Case #" HeaderText="Case #" ReadOnly="True" SortExpression="Case #" />
        <asp:BoundField DataField="Unit #" HeaderText="Unit #" SortExpression="Unit #" />
        <asp:BoundField DataField="Date" HeaderText="Date" SortExpression="Date" />
        <asp:BoundField DataField="Type of Call" HeaderText="Type of Call" SortExpression="Type of Call" />
        <asp:BoundField DataField="Gender" HeaderText="Gender" SortExpression="Gender" />
        <asp:BoundField DataField="Age" HeaderText="Age" SortExpression="Age" />
        <asp:BoundField DataField="View PCR" HeaderText="View PCR" SortExpression="View PCR" />
        <asp:TemplateField HeaderText="Selection">
            <ItemTemplate>
                <asp:CheckBox ID="Selections" runat="server" OnCheckedChanged="CheckBox1_CheckedChanged" />
            </ItemTemplate>
        </asp:TemplateField>
    </Columns>
</asp:GridView>
4

1 に答える 1

0

これを試して:

<asp:TemplateField HeaderText="Selection">
    <ItemTemplate>
        <asp:Button ID="Selections" runat="server" OnClick="Selections_Click" CssClass="btn" />
    </ItemTemplate>
</asp:TemplateField>

注:属性は、レンダリングされた出力CssClassにクラスを割り当てます。btn

于 2013-08-12T18:31:39.143 に答える