How to set ellipses on a column data
I have the following BoundField
in my GridView:
text-overflow:ellipsis;
only works if the the following properties are true:
The element's width must be specified.
The element must have overflow:hidden
and white-space:nowrap
set. Change your css
like below
.hideText {
width:120px;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
Here is the working Demo
Update:
Here is your complete TemplateField
definition. Define a div
within the TemplateField
and decorate with the css properties for ellipsis.
Here is how it looks like when I tried this in a gridview locally.