根据标志在gridview列中显示多个glyphicon

时间:2015-09-03 00:05:02

标签: c# asp.net gridview glyphicons

我有一个有界字段的gridview。在第一栏"优先级"我想绑定优先级编号,但也要根据数据表中其他列的标记添加多个glyphicon。有列" HOT_FLAG"," WATCH_FLAG"和" INFO_FLAG"如果这些是真的,我需要显示相应的glyphicon。

enter image description here

<asp:GridView 
        ID="dgv_Test" 
        GridLines="None"
        AutoGenerateColumns="False"
        OnRowCreated="dgv_RowCreated"
        EnableHeadervisualstyles ="true"
        runat="server">
        <Columns>
            <asp:BoundField DataField="PRIORITY" HeaderText="#"/>
            <asp:BoundField DataField="COL2" HeaderText="COL2" />
            <asp:BoundField DataField="COL3" HeaderText="COL3" />
        </Columns>
</asp:GridView>

我假设我需要将这些绑定字段转换为模板字段(或其他内容)并在后面的代码中设置Glyphicon,但我不确定从何处开始。

1 个答案:

答案 0 :(得分:0)

试试这个。

<asp:TemplateField HeaderText="#">
    <ItemTemplate>
        <asp:Image ID="HotFlag" runat="server" ImageUrl="path/to/image" Visible='<%# Eval("HOT_FLAG") %>'/>
        <asp:Image ID="WatchFlag" runat="server" ImageUrl="path/to/image" Visible='<%# Eval("WATCH_FLAG") %>'/>
        <asp:Image ID="InfoFlag" runat="server" ImageUrl="path/to/image" Visible='<%# Eval("INFO_FLAG") %>' />
    </ItemTemplate>
</asp:TemplateField>