Search
3636 results 171-180
Forum
- 6th Oct 2016datables edit Can deal with data with Server mode, like databalses Server - sideEditor's .NET and PHP libraries will automatically detect and use server-side processing requests. There is an example of that here. Allan
- 7th Jun 2016Edit mode record moving to end of the listDoes it conform to the client / server interchange required by Editor? Can you show me? Allan
- 20th Jan 2016fnGetData() is not working in table collapsing modei solved the problem. Thanks for reply.
- 3rd Apr 2015In the dyna table unable to navigate to a particular date in the edit modeAgreed - closing this discussion. Allan
- 26th Mar 2015Responsive Mode auto-expands the hidden fields when I click a buttonI've been able to sort this by adding OnClientClick code which calls event.stopPropagation(); This stops the click event from bubbling up to the parent container forcing DataTables to think that I want to auto-expand the first column and display the hidden columns. Hope this helps somebody out there.
- 4th Mar 2015How to wrap long string text in table cells inside Details row in Responsive mode?I was missing the width="100%" in my table. Fixed!
- 19th Feb 2015Editor Responsive causing issues in EDIT modeThanks Allan Found out it was being caused by another bootstrap CSS file in my theme.
- 28th Jan 2015and print the values of a query in standalone modeUse $().html() rather than $().val() if you want to write to the HTML. Allan
- 18th Aug 2014[close] Server-side processing mode causes data refresh on each column sortOk... sorry for that question... Answer by myself: "serverSide": false, That plugin is really one of the greatest jquery plugins you can find! Thanks 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