- Posts: 222
- Thank you received: 10
Ask the community, share ideas, and connect with other LimeSurvey users!
A TEXT column with a maximum length of 16,777,215 (224 − 1) characters. The effective maximum length is less if the value contains multibyte characters. Each MEDIUMTEXT value is stored using a 3-byte length prefix that indicates the number of bytes in the value.
<script> $(document).ready(function() { $('#example').DataTable( { "paging": false, columns: [ { width: '20%' }, { width: '80%' } ], } ); } );</script> <link href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.css" rel="stylesheet" type="text/css" /><script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.js"></script> <table class="hover row-border order-column" id="example" style="width:100%"> <thead> <tr> <th>1st column</th> <th>2nd column</th> </tr> </thead> <tbody> <tr> <td>1st column text...</td> <td>2nd column text...</td> </tr> </tbody> </table>
DenisChenu wrote: With fixed HTML : i add whole in my setup. Then i really don't think it's related to utf8
Maybe you have XSS security enable, and since a lot od forbidden with XSS security …
PS : OK for private message, send is «send here»
DenisChenu wrote: In bytes : text size are 2^16 ,
If you use utf8 with only 4 bits character it do 2^14 : 16 384
Maybe : you can try replacing text by longtext directly in DB
2^32 > 2^30 : 1 073 741 824 character only 4 bytes utf8