效果
方法一:TemplateField
关键点
- TemplateField的灵活性
- CSS:
overflow:hidden;text-overflow:ellipsis
(溢出时隐藏;文本溢出时省略号;文本不换行)
code
<asp:TemplateField HeaderText="MAC">
<ItemTemplate>
<div style="overflow:hidden;text-overflow:ellipsis;white-space:nowrap;80px;">
<asp:Label ID="LabelMAC" runat="server" Text='<%# Eval("Equip_MAC") %>' Tooltip='<%# Eval("Equip_MAC") %>'></asp:Label>
</div>
</ItemTemplate>
<HeaderStyle Wrap="false" Width="80" HorizontalAlign="Left"></HeaderStyle>
<ItemStyle Wrap="false" Width="80"></ItemStyle>
</asp:TemplateField>
方法二:RowDataBound
关键点
- RowDataBound事件
- Title(Tooltip)属性
- css
code
.GridView是GridView的class
与参考链接中的情况不同:我只对第7列进行了处理,且弃用了RowCreated事件改用CSS
.GridView{
table-layout: fixed;
}
.GridView td{
word-break:break-all;
}
.GridView td:nth-child(7){
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
protected void GridViewEquip_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)//数据行
{
TableCell cellMAC = e.Row.Cells[6];
cellMAC.ToolTip = cellMAC.Text;
}
}