Search
3636 results 151-160
Examples
- Editor › Multi-column layoutgood support in all modern browsers.
- Editor › Editing options - submit full row dataoption and has three modes of operation:
- Editor › Simple inline editinghas three different Editor modes: Primary editing
- Editor › Editor inline editing exampleshas three different Editor modes: Primary editing
- Editor › Simple bubble editinghas three different Editor modes: Primary editing
- Editor › Editor bubble editing exampleshas three different Editor modes: Primary editing
- Editor › Join tables - Cascading liststhe end user's conceptual model of the data. Categories
- Buttons › HTML5 export buttonsfile saving features of modern browsers (IE10+, Chrome, Safari,
- DataTables › Scroll - vertical, dynamic heightis resized. A relatively modern browser is required
Forum
- 11th Nov 2019Is possible a "Show" button in the Editor that show fields in read-only mode?Thanks, colin, that helped me. In the end, I did this here. https://editor.datatables.net/examples/simple/inTableControls Have it changed to a "show"-button.
- 22nd Oct 2019Place Div Search Field at top of screen absolute modeHi @fabioo7 , You can move the element with jQuery functions - something like this. Cheers, Colin
- 25th Jun 2019adjustment for responsive modeHi @anakin59490 , You would get that error if the DataTables initialisation couldn't find the requested pagingType plugin, so it looks like your step 1 above isn't loading the file as expected. Cheers, Colin
- 12th Jun 2019Filter in Serverside modeAfter researching for many hours,i finally found a way to make it work. I pass the POST date as string and then format it with strtotime() and then date() as follows: $POST1 = $_POST["datevalue_from_datepicker1"] ; $POST1 = str_replace('/', '-', $POST1); $POST1 = date('Y-m-d', strtotime($POST1)); and in sql in Editor instance ->where( function ( $q ) use ( $POST1) { $q->where( 'start',$POST1,'>=' ); } ) Thanks for the help!
- 25th Mar 2019Edit mode not selected value appearingHi @crackwood , At a glance your code looks ok - pretty much the same as this example here. Are your variables html and html2 formatted the same as the example? If no joy, would you be able to link to your page or create a test case? Cheers, Colin
- 26th Feb 2019AutoFill Cursor appearing somewhere else if web page is in zoom mode.Hi @KelvinDing , Glad all working, and thanks for reporting back! Cheers, Colin
- 3rd Feb 2019child row not appearing in first column when in responsive modeThank you Kevin and apologies for my delayed reply. I'm pretty sure that I am including the correct files but maybe some of my other plugin files are conflicting so I will need to test with a blank slate. I will get back to you. Thanks
- 26th Sep 2018PageResize plugin goes into infinite loop when using inside Inspinia .ibox in full screen modeActually its the toggling of any of the other buttons except the output button that causes the issue since doing so causes the output window size to change and then fires the page resize event.
- 14th Aug 2018Responsive mode, column display when screen become smaller.Hi @teojicd , Yep, you have control over how the children are displayed by responsive.details.renderer. There's an example of that here. Cheers, Colin
- 9th Jul 2018inline mode edit to select the text@colin thank you very much :) :) :)