The word wrap feature of the DTC is simply to state if you want the grig columns to have fixed width or dynamic width.
With fixed width (word wrap), the columns will have the width attribute added - the width as set in the designer at design time. In dynamic width, the table columns do not have the width attribute setting, so the browser re-sizes the columns to fit the data.
Of course, neither method is particularly good, and results vary between browsers. The only good way to fix a table column width is to have a sized image in the header column. Daft but true.
But you could always add a function to your grid column. So the database data becomes wrapped or modified in some way:
in the grid column put
=myFormatFunc([theDatabaseColumn])
now add a vbscript or javascript server-side function:
function myFormatFunc(sData)
... do somthing with sData
... - like truncate it to 40 characters
... or put it in a <SPAN> tag with a fixed width
myFormatFunc = "<SPAN style=""width=40"">" & sData & "</SPAN>"
end function