02 Feb 2022
in reply to
Missing user
Link to this post
Hello Charlotte,
I am not sure if I experienced the exact same issue. My field was not cutoff, but the text simply wrapped onto the next line and unfortunately I could not find any out of the box setting to fix this. However, you can try the following CSS snippet:
li.k-item span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
This hides any overflow on the individual containers and adds the ellipsis at the end. Let me know if it works for you or if you run into any issues implementing it.
All the best,
Brady
TPC Web Developer