Reputation: 581
I'm using a Kendo-Grid for filtering, everything is working fine except for a problem on my cell if there is no white space. As displayed in the image:
the string is "https://www.linkedi/Testing" but it's displayed only until "Test".
This problem does not appear for string with white spaces like:
I'm newbie in client-side programming, thanks a lot to everyone.
Upvotes: 0
Views: 954
Reputation: 2494
The default behavior should be like this:
Im not sure why in your case its not like this, maybe older version of kendo.
To achieve the above behavior add css:
/*Overides kendo default*/
.k-grid td {
text-overflow: ellipsis;
}
Example: ellipsis
To achieve text in new line add css:
/*Overides kendo default*/
.k-grid td {
word-break: break-all;
}
Example: brake-all
Upvotes: 1