Search
19098 results 611-620
Forum
- 26th May 2017How does datatables create the csv export?It depends upon the browser - for example in Chrome for me it just downloads automatically to my Downloads folder. The CSV export makes use of this library. I don't believe there is a way to tell the browser if you want to download to a path rather than use a save as box if that is how the browser is configured. You certainly can't tell it what path to download to - that would be a major security issue. Allan
- 23rd May 2017how to create multiple rows using create api without showing forms?You need to call the submit() method to submit the form. Regards, Allan
- 15th May 2017create dropdowns on insert with data from dbNope, I wanted something like this https://editor.datatables.net/examples/simple/fieldTypes.html, but in the meantime I solved it. I use json to fill my options in the dropdown and it works perfect :smile:
- 28th Apr 2017Standalone Create and Update ProblemCould you give me a link to the page showing the issue so I can debug it please? That actually looks like it should work since you are using repeating tabular data. Allan
- 3rd Apr 2017Override Create template to allow user to select a foriegn key relationYes, Editor has field type plug-ins available for Select2, Selectize, Chosen and jQuery UI AutoComplete. You can choose which ever you prefer to work with. This is the plug-ins list. Allan
- 1st Apr 2017create 2 tables in one page using data tables, not workingThere indeed isn't much information in the question. Seeing the little info provided, you'll need to give each table a unique id. $(document).ready(function() { $('#table1').dataTable(); $('#table2').dataTable(); } );
- 29th Mar 2017How to create "Headers and Footers" on datatables PDF?yes header and footer can be easily created using the plugins... if you still have problem, send me details here...
- 14th Mar 2017Hi! I kindly need help on how to create an interactive table that works like excel sheetThat's actually a little tricky in DataTables since rows can be reordered and filtered. What you would have to do is use a callback like in this example. That's just a simple counter, but you could extend it to do a summation. Allan
- 14th Mar 2017Extra parameters for editor on create or editI only just fully registered this part: However "TestParam" is always null in the request for some reason, even though I can see that it's been posted ok in Firebug. How are you trying to access it? $_POST['TestParam'] would be the way in PHP. Are you using PHP or .NET or something else? Allan
- 15th Feb 2017How to create function with both RowReorder and Export ButtonsWe can help if you post a link to your page or provide a test case using the steps here. Kevin