Search
43675 results 6941-6950
Forum
- 1st Sep 2014Reloading Table IssuesAny help?
- 28th Aug 2014data table issue with ie11 search not workingyes only problem with IE 11. work properly in firefox,chrome and less than IE 10
- 25th Aug 2014Table Tools: jump line with \n or br not working in PDFI have same problem. Did you get any solution? Thanks
- 21st Aug 2014datatable.js table tool export button is not showing on devicesThe export buttons in TableTools use Flash. So if Flash is not available the buttons simply don't show. I have a blog post with thoughts about the state of HTML5 for replacing the use of Flash in TableTools. Allan
- 15th Aug 2014Updating AJAX-sourced table data using fnUpdate or the API updates the wrong row?Before it was returning the index of the data position in the array, which was the page order, rather than the row order. Your fix is bob on. You might want to also consider using using row().data() rather than the old fnUpdate method (since you are already using the new API): http://jsfiddle.net/wvzntjv7/5/ . Eventually I plan to add a function selector option to row() (and friends) so you would be able to do that update in a single statement... Allan
- 1st Aug 2014Include sub-selects in table view mode (not the editor view)if ( ! isset( $_POST['action'] ) ) { $data = $db->sql( 'SELECT id as DT_RowId, field1, field2, ... FROM ... WHERE ... ' )->fetchAll(); echo json_encode( array( 'data' => $data ) ); } else { ... editor stuff } I think should do it. Allan
- 24th Jun 2014Table Header breaking with Vertical Scroll not Resolved?Actually broken in the offiial examples as well: http://datatables.net/examples/basic_init/scroll_y.html Any good fixes for this? The vertical scrollbar isn't affecting tbody width, but the datatable scroll body width - which apparently the header isn't adjusted for.
- 24th Jun 2014Bug with table headers and vertical scroll bar (plunker + potential fix)Nice... totally had no idea it would do that, but that's great.
- 11th Jun 2014Data table PaginationHow does your dataTable Setup looks like? Do you have a live example?
- 9th Jun 2014Select rows which are not present in other tableokey but i don't know how to use it to put it in a drop box $our['pcc_employee'] = $db ->sql('SELECT e.id ,e.Badgenumber, e.Name FROM pcc_employee e WHERE NOT EXISTS (SELECT 1 FROM pcc_empcollege c WHERE e.Badgenumber = c.empid) order by e.Name') ->get( 'e.Badgenumber as value, e.Name as label' ) ->fetchAll(); so if u could kindly teach me how :). here is my sample code..