How to give word wrap break word property to a datatable column

How to give word wrap break word property to a datatable column

giridhargiridhar Posts: 20Questions: 4Answers: 0
edited May 2014 in General
<table id="user">
<thead>
<tr class="theader">
<th>Order Id</th>
<th>Message</th>
<th>Date Created</th>

</tr>
</thead>
<tbody>
</tbody>
</table>

<script>                                        
$("#user").dataTable({
            "bFilter": false,
            "bAutoWidth": false,
            "bProcessing" : false,
            "bServerSide" : true,
            "sAjaxSource" : "./getOrderDetails.cpm"
});
</script> 

Hi friends,
Here is my datatable.I want to implement wordwrap break word property to the message column so that long messages with out space will break.Can you please tell me how should i implement the word wrap break word propety to a column in the datatable.

Answers

This discussion has been closed.