Break a continuous text in column
Break a continuous text in column
i have a column that have a long text(continuous ,without any space!!!!). i want to break this line , i dont want to my table have scroll
note: my text is continuous and without any space(like a long windows directory path) => C:\windows\system32\drivers\drivers32\bin\data\system\autorun\win7\system32\windows\system\test\driver\system\amdX86.exe
thank you
This discussion has been closed.
Answers
A quick Google search for "css break text" will lead you to the
word-wrapproperty (alsooverflow-wrap) which could be used for this. The other option is to usecolumns.renderto modify the string and inject a space where you want it to wrap.Allan