Search
18367 results 2901-2910
Forum
- 16th Mar 2015loading multiple datatables with different ajax sourcesI am trying to load data inside two datatables which are under two different tabs. Both the datatables use different files to load data into the table. Is there a way of doing that? I have created two divs with same class name and for loading the data I have created a js file but when I try to load the datatables they get loaded with the same data.
- 10th Feb 2015Retrieve Ajax data value in php filehttps://datatables.net/forums/discussion/25964/retrieve-ajax-data-parameter-value-in-php-file#latest
- 13th Jan 2015Child Row Bind .NET System.Data.Datatable without AjaxI would like to take advantage of the child row feature as demonstrated 'http://www.datatables.net/examples/api/row_details.html' but I am having no joy with binding an existing System.Data.Datatable. Could somebody please provide an example of binding Server-side data using .NET C# MVC?
- 6th Jan 2015Source data and columns from ajaxMy data is variable columns. I can respond with data and columns definitions through json format. How can i receive both in datatables and what is the format which will be used?
- 5th Jan 2015ajax c# model grid databindhow can I do grid dynamic data bind ? Why can not I use local data? success: function (result) { data = result; ( json format )
- 11th Dec 2014Regarding Ajax call to web services with Pagination & SortingWe have a web service that expects a call in the format getusers.ashx?company_id=1234&per_page=10&page_offset=11&sort_by=created_date, where per_page and page_offset are used for pagination and sort_by is used for sorting. How do I set up the DataTables API so that it ONLY sends the params that I care about for this web service when a user pages or sorts inside of a table? By default, the API sends over a bunch of column and table information as query params, but I cannot rewrite our web service to understand this format. I'm currently evaluating if my Company should use DataTables and the tool looks great otherwise, but this would be a deal breaker for us. Am I missing something?
- 25th Nov 2014Unable to show loader image before ajax call for dataTableHi, How can I show a loader image before rendering dataTable and hide it after loading has finished. I have tried ajaxStart, ajaxSend, ajaxStop, ajaxComplete, beforesend, complete but nothing seems to work. Please help.......
- 24th Nov 2014Ajax Datatable - Colreoder not working properly with server side processingHi, I am trying to implement the colreoder functionality in my application,where we are fetching the data from server. Reorder happens only for current page, if I moved to next page the header is in same place where as column data gets changed as original position. below are by sample code. var oTable = $('#resulttableSummary').dataTable({ // sDom: 'R<"top"i>rt<"bottom"flp><"clear">', // dom: 'Rlfrtip', //"sDom": 'Rlfrtip', ////"bDestroy":true, "bSort": false, "bProcessing": true, "bServerSide": true, "bJQueryUI": true, "bAutoWidth": false, "bFilter": false, "bLengthChange": false, "bPaginate": true, "bRetrieve": true, "sServerMethod": "POST" "iScrollLoadGap": 50, //50 "iDisplayLength": 150, "bScrollInfinite": true, //"sScrollY": "150px", -- If i enable this even in current page not working "sAjaxSource": CarrierSummaryPath, }); new $.fn.dataTable.ColReorder(oTable); Kindly help me out on this. Thanks in advance.
- 14th Nov 2014Using DataTables with custom data source..not AJAXHi and thank you alot for this incredible work that you ve made available for free! I want to use DataTables with data coming from a Websocket server. So is that possible ? If there is a way to provide DataTables with a Javascript callback that is called each time a page is clicked, a column header is ordered, or a search column is hit, then there I can put my custom logic of making server call along with desired options, then apply the incoming result to the DataTable.. My call to the Webserver will tell how may results are there, how many pages etc.. Thank you in advance for any possible help
- 4th Nov 2014AJAX Server-Side Filtering Issue - WordPress - or - Client-Side load timesThe table I am currently working on is at http://qbhitlist.com/qbhitlist/quarterbacks The overall issue(s) are either if I use client-side the page loads too slow ~12-14s BUT all the sorting and filtering work correctly If I use Server Side the page loads lightening fast, but the filtering (The state, year, and style selects up top do not work (which are a main part of the sites functionality.) The front end code is here, currently running client side http://pastebin.com/S8VFj0PT The backend code is here http://pastebin.com/FNS5d8Ri as you can see I tried using WP's transients to cache the json response, but it had no effect. If there is a way that I could lazy load the json that would be great. But I am also open to working server side as well. My skype is aketchmark if you want to contact me directly