设置Zebra DataList表

时间:2012-12-18 16:26:49

标签: asp.net css datalist

首先,我需要从数据库绑定一个表,以便每行都可以编辑。 我决定选择DataList,因为它具有<EditItemTemplate>属性,而转发器没有。{/ p>

我需要创建一个Zebra表,为此我创建了以下CSS类:

.row:nth-of-type(odd)
{
background-color:Green;
}

问题在于,当我在转发器中使用此类时,它工作正常,因为转发器的构建方式使您可以对行和列进行编码。 例如:

<asp:Repeater>
<HeaderTemplate>
    <Table ...>
</HeaderTemplate>
<ItemTemplate>
  <tr Class="row">
    <td> ... </td>
    <td> ... </td>
  </tr>
</ItemTepmlate>
<FooterTemplate></Table></FooterTemplate>

This is How the REPEATER table looks like

但是,当我以相同的方式构建我的DataList时,它看起来很奇怪而且很混乱。 这就是我的Datalist的构建方式:

<asp:DataList ID="dlStages" runat="server" DataKeyField="Priority" OnCancelCommand="dlStages_CancelCommand"
    OnEditCommand="dlStages_EditCommand" 
    OnUpdateCommand="dlStages_UpdateCommand" BorderWidth="2" 
     GridLines="Both" CellPadding="20" CellSpacing="20" Width="99%" 
    onitemdatabound="dlStages_ItemDataBound">

    <HeaderTemplate>

            <th>
                Priority
            </th>
            <th>
                Stage
            </th>
            <th>
                Description
            </th>
            <th>
                Command
            </th>
            <th>
                Expected End Date
            </th>
    </HeaderTemplate>
    <ItemTemplate>

            <td>
                <%# Eval("Priority") %>
            </td>
            <td>
                <%# Eval("StatusName") %>
            </td>
            <td>
                <%# Eval("Comments") %>
            </td>
            <td>
                <asp:LinkButton ID="lbtnEdit" runat="server" Text="Edit" CommandName="edit"></asp:LinkButton>
            </td>
            <td>
                <%# Eval("ExpectedEndDate", "{0:dd-MM-yyyy}")%>
            </td>

    </ItemTemplate>        
    <EditItemTemplate>

            <td>
                <%# Eval("Priority") %>
            </td>
            <td>
                <%# Eval("StatusName") %>
            </td>
            <td>
                <asp:TextBox ID="txtComments" runat="server" Text='<%# Eval("Comments") %>' Width="800px"
                    Height="48px" TextMode="MultiLine"></asp:TextBox>
            </td>
            <td>
                <asp:LinkButton ID="lbtnUpdate" runat="server" Text="Update" CommandName="update"></asp:LinkButton>
                /
                <asp:LinkButton ID="lbtnCancel" runat="server" Text="Cancel" CommandName="cancel"></asp:LinkButton>
            </td>
            <td>

                <asp:TextBox runat="server" ID="txtDate"></asp:TextBox>
                <asp:CalendarExtender ID="CalendarExtender1" runat="server" PopupButtonID="txtDate"
                    TargetControlID="txtDate" Format="dd-MM-yyyy">
                </asp:CalendarExtender>
            </td>
    </EditItemTemplate>
</asp:DataList>

DataList Table:

为了为DataList中的每一行设置css类,我在代码中写了以下代码:

protected void dlStages_ItemDataBound(object sender, DataListItemEventArgs e)
{
    e.Item.CssClass = "row";
}

事情是,它不会创建一个斑马表。相反,它用灰色绘制第一列(我不知道它来自哪里)。

有人能告诉我我的代码有什么问题吗?在我的案例中如何在DataList控件中实现ZEBRA表?

提前致谢

P.S。 我的问题可能不清楚,所以如果需要澄清,我会进一步详细解释。

3 个答案:

答案 0 :(得分:0)

请参阅此相关问题:Creating table inside Datalist

  1. 您尚未在模板中指定<tr>代码,因此DataList只生成孤儿<td>代码

  2. 您可以使用值为RepeatLayout的{​​{1}}属性让Table为您生成一个开始和结束DataList标记。

答案 1 :(得分:0)

我知道这是一个老问题,但您应该设置ItemStyle的{​​{1}}和AlternatingItemStyle属性,以便获得您想要的条带化asp:DataList < / p>

datalist标记的开头应如下所示:

ItemStyle="normalRow" AlternatingItemStyle="greenRow"

答案 2 :(得分:0)

您可以在DataList控件CssClass属性中使用 bootstrap 类:

CssClass="table table-striped"

然后,覆盖表条带:

.table-stripedCSS > tbody > tr:nth-child(odd) > td,
.table-stripedCSS > tbody > tr:nth-child(odd) > th {
    background-color:red;

    /*Choose your own color here*/
}

了解更多信息:
Bootstrap table striped: How do I change the stripe background colour?