Search
19065 results 611-620
Forum
- 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
- 16th Jan 2017How do I create a search that looks for multiple things?Okay I figured it out. On click, do this: $.fn.dataTable.ext.search.push(function( settings, data, dataIndex ) { if ( data[7] == clickedState || data[8] == "Red" ){ return true }else{ return false; } }); table.draw();