Search
10314 results 261-270
Forum
- 12th Jan 2017download builder doesn't properly sync with URLBug. Thanks for letting me know about that. I'll look into it. Allan
- 1st Sep 2016Difference url domain.com/dev/ and domain.com/stag/Could you give me a link to the page in question so I can check it out please? I don't immediately know what the issue would be from the description I'm afraid. Allan
- 28th Jul 2016can we use a variable which is having objects to fetch data in datatable instead of ajax url?Sure - use ajax as a function and have it get the data from wherever the data is and pass it through to the success callback. Allan
- 25th Jun 2016Ajax - Requesting remote URL Json File, while get "Invalid JSON response"!Tom, thank your immediate assistance. I started to modify the code, while still failed. As I am new to DataTable, so I will take time to study more and see if I am able to find the code error out. Best Regards BewweB
- 2nd Feb 2016How to fetch id form json array and assign it to url of edit.phpOkk I got the answer finally.
- 10th Nov 2015Ajax Call not working for URL but works for same TextSorry about the double thread btw :/
- 18th Sep 2015Ho eto use datatable plugin for Json data from an UrlParijat, what is the question? Check example how to use ajax https://datatables.net/examples/data_sources/ajax.html. Any additional formatting for values is done in table configuration.
- 25th Mar 2015Long URL causing 400 bad requestI sure do wish it would make toast and coffee in the morning... ;-) Allan
- 13th Mar 2015How do you make a row link to url?{ data: null, render: function ( data, type, row ) { return '<a href="user_project_edit.php?project='+data.projects.projectid+'" target="_blank">User Project Edit Page</a>' } }
- 3rd Feb 2015Square Brackets in URL for .NET Web ServiceI have not figured out the first way yet but will work on it. Re the second way, I don't think that would work because "d" represents the built-in parameters that DataTables is sending to the serverside, but I am also sending parameters, so I don't see how I could put those into the key for "data". I found another way and that is to use the HttpContext object in my C# code, as shown: string searchValue = HttpContext.Current.Request.QueryString["search[value]"]; int orderColumn = Convert.ToInt32(HttpContext.Current.Request.QueryString["order[0][column]"]); HttpContext is available when the Request object is not. In order to have it in your code, you must put this statement at the top of your C# webservice file: using System.Web; Thanks