Search
9310 results 4311-4320
Forum
- 13th Oct 2016How can i combine 2 different API's for the same table?var table = $('#example').DataTable( { "scrollY": "200px", "paging": false, initComplete: function () { ... } } ); If you would like a running example, that would be covered by the DataTables support options. Allan
- 10th Oct 2016Select field type server side ajax data sourceyou can return an options object in the JSON
- 10th Oct 2016Loading Datatable using Ajax Source Not Working"ServerSide": true, This isn't going to enable server-side processing anyway since Javascript is case sensitive and the option's name is serverSide. @arijit.sil - We'd need a link to the page showing the issue to be able to offer any help. Allan
- 8th Oct 2016Columns.render calling a PHP function?afraid. There are three options I can think of:
- 7th Oct 2016SELECT DISTINCT for EditorLooks good - thanks for posting your changes! I'm curious what the use case is. Editor doesn't provide SQL aggregation options, so why would distinct rows be useful? Thanks, Allan
- 6th Oct 2016Search filter issue with Turkish characters "ı" , "İ" , "Ş" , "ş" , "Ğ" , "ğ"set date columns' searchable options to false, ajax error
- 5th Oct 2016Automatic select of the first row on reloadTwo options: ajax.reload() accepts a callback function as the first argument, so you can do basically the same as your initComplete function there. Listen for draw using one() to execute a function when the table next redraws. Allan
- 4th Oct 2016Search result highlighting in child rowsfeedback. I have 2 options for now to deal
- 4th Oct 2016date formatYou have two options - use a renderer to convert from the .NET date string to something readable, or modifier your server-side code to output the date in a readable format. Allan
- 4th Oct 2016change textarea heightUsing CSS is the correct way to do this. Editor's built in CSS uses: div.DTE_Field_Type_textarea textarea { padding: 3px; width: 100%; height: 80px; } Which will override any setting you make in the attr options. Allan