Search
530 results 451-460
Forum
- 24th Oct 2016Sever Side Pagination doesn't work (AngularJS)What should it be? Are you not expecting it to be filtered? If not, that suggests that the recordsFiltered value being returned in the JSON is incorrect. See the server-side processing manual. Allan
- 9th Oct 2015Responsive not working with fixed Columns in angularJsDid you ever get this working?
- 2nd Oct 2015Can I use dataTables with AngularJS UI Ng-grid(not ui-grid)@allan Thank you for replying. @tangerine actually I want to use the export to excel function because the one I use now is really slow.
- 2nd Jun 2015ScrollY with small number of rows (AngularJs)thanks yes, this is fix the exception but when changing data , table disappear what i should do to change data in table ???
- 30th Apr 2015Displaying limited Number of Rows AngularJsHi, When you set paging to false the number of rows to be shown in the table should be automatically disabled, like in this example: http://live.datatables.net/buvafeqi/1/edit . The number of rows per page is obviously completely redundant if paging is disabled. Regards, Allan
- 21st Apr 2015Reorder Columns in AngularJsThanks for reply ok, no problem
- 20th Apr 2015Scroll Up after using draw() function in angularJsThank you very much for quick answer, it is working fine now
- 24th Jul 2019How to load DataTable to a dynamic table in AngularJs 1.6.9This table changes every time fields are filled and services are consumed. {{item.objectPK}} {{item.objectType}} {{item.systemName}} {{item.systemType}} {{item.severity}} {{item.traceDate}} I am consuming DataTable as follows $scope.filterTrace = function () { $scope.TraceFilter = { objectPK: $scope.objectPK, objectType: $scope.type, systemName: $scope.systemName, systemType: $scope.systemType, severity: $scope.selectSeverity, traceDate: $scope.traceDate }; $http.post("/api/Trace/FilterTraceInfo", $scope.TraceFilter) .then(function (responce) { $scope.TraceInfo = responce.data; angular.element(document).ready(function () { $.extend($.fn.dataTable.defaults, { info: false, searching: false, ordering: false, "language": { "url": "//cdn.datatables.net/plug-ins/1.10.16/i18n/Spanish.json" } }); dTable = $('#traceTable') dTable.DataTable(); }); if ($scope.TraceInfo == "") { alert("No se a encontrado ningun valor"); } }, function errorCallback(responce) { alert("No se a encontrado ningun valor"); }); } The mode and the controller are correct, I guess my problem lies in how I consume the DataTable
- 4th Dec 2017Jquery datatable features like pagination, filtering e.tc., are not working when using in Angular4?Can any one help me?
- 14th Nov 2017can't compile variable from Component (Angular2) to dataTables columnHi! I am totally exhausted looking for answer, so I'm asking for help now. the issue is that I cant integrate variable 'testMe' from Component to dataTables. ( such {{testMe}} doest render) Here is a part of code MyComponent ... export class MyComponent implements OnInit { constructor(private myService: MyService) { } testMe:any = 'some value'; // here is my value } MyService ... dtOptions = { dom: 'Brptip', columns = [ { title: 'Document', data: 'ticket', render: (val, type, row, meta) => { return <span>{{testMe}}</span> // -- that is a place that doesn't work! I expect here to be 'some value' instead {{testMe}} } }, ... ] } Looking forward for your help!