0

我在 asp.net Web 应用程序的模板字段中有一个列表视图。

我需要它来显示集合的内容,每行 1 个。

我怎样才能做到这一点?

当前设计:

我希望 ListView 的表有多行。1 为列表中的每个项目。例如:

Breeding Group | Breeding Group Role | Default

     AAA              1111                F
     BBB              2222                T
     CCC              3333                F

这适用于每个“作物”

那可能吗?

当前代码:

班级:

[Serializable()]
public class UserCrops
{
    public UserCrops(string _Crop, List<string> _BG, List<string> _BGR, List<bool> _Default)
    {
        Crop = _Crop;
        BG = _BG;
        BGR = _BGR;
        Default = _Default;
    }
    public string Crop { get; set; }
    public List<string> BG { get; set; }
    public List<string> BGR { get; set; }
    public List<bool> Default { get; set; }
}

捆绑:

    protected void GVUserCrops_RowDataBound(object sender, GridViewRowEventArgs e)
    {

        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            ListView lv = (ListView)e.Row.FindControl("lvBGs");
            lv.DataSource = finalSelection;
            lv.DataBind();
        }
    }

网格视图:

    <asp:GridView ID="GVUserCrops" runat="server" AutoGenerateColumns="False" CellPadding="4"
        ForeColor="#333333" GridLines="None" OnRowDataBound="GVUserCrops_RowDataBound"
        Width="634px">
        <AlternatingRowStyle BackColor="White" ForeColor="#284775" />
        <Columns>
            <asp:BoundField DataField="Crop" HeaderText="Crop" />
            <asp:TemplateField HeaderText="BG/BGR">
                <ItemTemplate>
                    <asp:ListView ID="lvBGs" runat="server">
                        <LayoutTemplate>
                            <table style="border: solid 2px #336699;" cellspacing="0" cellpadding="3" rules="all">
                                <tr style="background-color: #336699; color: White;">
                                    <th>
                                        Breeding Group
                                    </th>
                                    <th>
                                        Breeding Group Role
                                    </th>
                                    <th>
                                        Default
                                    </th>
                                </tr>
                                <tbody>
                                    <asp:PlaceHolder ID="itemPlaceHolder" runat="server" />
                                </tbody>
                            </table>
                        </LayoutTemplate>
                        <ItemTemplate>
                            <tr>
                                <td>
                                    <%# Eval("BG")%>
                                </td>
                                <td>
                                    <%# Eval("BGR")%>
                                </td>
                                <td>
                                    <%# Eval("Default")%>
                                </td>
                            </tr>
                        </ItemTemplate>
                        <AlternatingItemTemplate>
                            <tr style="background-color: #dadada;">
                                <td>
                                    <%# Eval("BG")%>
                                </td>
                                <td>
                                    <%# Eval("BGR")%>
                                </td>
                                <td>
                                    <%# Eval("Default")%>
                                </td>
                            </tr>
                        </AlternatingItemTemplate>
                    </asp:ListView>
                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
        <EditRowStyle BackColor="#999999" />
        <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
        <HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
        <PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
        <RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
        <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
        <SortedAscendingCellStyle BackColor="#E9E7E2" />
        <SortedAscendingHeaderStyle BackColor="#506C8C" />
        <SortedDescendingCellStyle BackColor="#FFFDF8" />
        <SortedDescendingHeaderStyle BackColor="#6F8DAE" />
    </asp:GridView>

编辑:

列表截图: 在此处输入图像描述

编辑2:

画出我想要完成的事情。 在此处输入图像描述 在此处输入图像描述

请原谅粗糙的图纸。我试图让名为 finalSelection 的列表(在 Sketch#1 中,8 个项目)看起来像 Sketch#2 中的 Gridview。使用单元跨越可能会更容易,但看起来像是作弊。所以我制作了一个带有 1 个绑定列“Crop”和另一列(templatecolumn)的 gridview,然后我放置了一个 listview 控件,其布局类似于表格(我喜欢) t 表现得像我希望的那样(这似乎合乎逻辑) 我能做些什么来实现我的目标?:)

4

1 回答 1

1

替换<%# Eval("BG")%><%# Container.DataItem %>

编辑:从 OP 截屏后。

似乎您的 DataSource 是错误的。您指的是包含列表的类。

尝试这个:

lv.DataSource = finalSelection.BG;

于 2013-10-22T10:14:45.050 回答