Search
43674 results 6591-6600
Forum
- 31st Mar 2020I receive the data, but the table does not appear, nor does the "Post" request. Do you have any ideaI solved the problem. Wrong: Route::get('/list', 'OrderController@readOrder')->name('orders_list'); Route::post('order-all', ['as'=>'order-all', 'uses'=>"OrderController@readOrder"])->name('order-all'); Correct : Route::get('/list', 'OrderController@getAllOrder')->name('orders_list'); Route::post('order-all', 'OrderController@readOrder')->name('order-all'); The problem is that we call the same method from the controller. I had to return a view first. Thank you for your help and your time! Thank you, Kevin!
- 25th Mar 2020I want to add header level searching in a data table in not all column but only in few selected col,I replied to your other comment on the other thread. Please post comments only once to avoid duplication of effort.
- 19th Mar 2020How can I install data table 1.10 higher in scrollerHave you checked the versions like the message suggests? Colin
- 19th Mar 2020Show only specific amount of rows in table and rest export as ExcelThe problem is browser not responding on huge amount of data. And DataTable take so much time to load. Start with this FAQ. So for that, I want to show x number of rows in DataTable and rest Export as Excel. Where x can be changed. If you use server side processing as described in the previous FAQ link then see this FAQ regarding exporting server side datatables. Kevin
- 12th Mar 2020Search in input values in table tdsThanks for the test case, that helps. This example should help, @kthorngren made it for another thread. It shows how to query those input elements. Colin
- 11th Mar 2020Data table trial versionEditor is a licensed product that you need to purchase to use. The details are here. Before purchasing you can download a trial version which lasts two weeks. Once the trial is over you need to purchase Editor to keep using. If you still have questions please provide more specifics of your question. Kevin
- 10th Mar 2020how to make data table in 'pdf' To Support Arabic Language (RTF) as when we dwonload it?This thread should help, it's asking the same thing. Cheers, Colin
- 7th Mar 2020Data in Table in the centerSolved, just add text-align : center;
- 6th Mar 2020how to reload if building a data table with dom jquery?We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 4th Mar 2020table not clearing when you reload dataYou need to turn of the select and deselect events before creating them again. So each time your LoadNewData() function runs you are appending to the events. Here is an example of using off() to turn them off. http://live.datatables.net/gomamudu/2/edit Kevin