angular-datatables is a wrapper for jQuery dataTables. It exposes an Angular module that provides a datatable directive along with datatable options helpers.

learn more… | top users | synonyms

0
votes
0answers
11 views

Angular Datatables Loading View when reloadData and Callback

I am reloading my datatable with Ajax after a row has been deleted like this: $scope.delete_member = function (memberId) { ModalService.showModal({ templateUrl: ...
2
votes
2answers
28 views

sorting not working as per requirement in angular-dataTables

I have an issue in my project. I am using angular dataTables. While sorting, if I have data for one column as 1.4, 1.5, 10, 2.4 I need to return it as 1.4, 1.5, 2.4, 10. But I am getting as 1.4, 1.5, ...
0
votes
0answers
26 views

angular with symfony - angular-datatables n.hide is not a function

I am building an application that has the client-side(frontend), with angularJS and angular-datatables (included in modal), separately from the server-side(backend) that uses symfony framework. ...
0
votes
3answers
53 views

How to use this json with angular datatables

This is my server response. { "status": "success", "data": [{ "id": null, "reportType": "Total Voucher Report", "reportModule": "Vouchers", "reportData": [{ "id": "1", ...
0
votes
0answers
17 views

server data not populated in angular datatables

I have used the server side processing for the angular datatables but it's not populating the data. Debug link: http://debug.datatables.net/edivom vm.dtOptions = DTOptionsBuilder ...
0
votes
1answer
28 views

how can I display 'processing' inside jquery datatable?

I'm using jquery datatables(angular datatables) with server side processing, the message 'processing' is above the table. I can change the position through sDOM (lfrtip), but is it possible to make it ...
1
vote
0answers
26 views

Change Page Charset with Javascript

I have a single-page app which specifies the UTF-8 charset with a "meta" tag within the head: <head> <meta charset="utf-8"> ... </head> ... On the "reports" page within the ...
1
vote
1answer
40 views

Angularjs expandable table row

I am using angular 1.4.3 and angular dataTables (here's the link: http://l-lin.github.io/angular-datatables). My needs is basic. I need to expand the row when it is clicked and all the ng-click's or ...
4
votes
1answer
162 views
+50

Angular datatable and JSON structure isue

here is my issue: The datatable plug-in only accepts an array I believe but my API returns an object with an array. I am trying to figure out if I need to extract this info (how?) or if the plug-in ...
1
vote
0answers
44 views

angularjs datatable overflow

I have problem on display datatable. It overflows like in the picture. I already tried withOption('autoWidth', false), but still not fix. my html <form class="bv-form" name="datagridForm" ...
0
votes
1answer
25 views

Reload the bootstrap datatable after every minute?

I am using bootstrap server side datatable in my angularjs application and now i want to reload the data of that datatable after every minute. So how can i do it? I am using the following code: HTML: ...
0
votes
0answers
21 views

Angular-datatables fetch data from angular provider

I am using an angular provider as a data storage for my application. I am using it to load data from the server side. What I am willing to do is to show some data with the help of angular-datatables. ...
1
vote
1answer
30 views

Dynamic Datatables with grunt

I have a Sample project with angular-datatables with CRUD operations. I looked at Project Scaffolding at grunt web, but I can't find anything about javascript templates that fit my needs... I saw ...
0
votes
1answer
24 views

Sometimes Angularjs Cancel my $HTTP request to the server for datatables data

Image 2 shows how angular cancel $http but we do not know why. Because of that we have no JSON data for columns and files from the server and then in the imagen 1 you can see that angularjs ...
1
vote
0answers
17 views

Reordering columns in angular-datatables

Is there any way to reorder angular-datatable colums? The ideal way would be drag & dropping but I can't find anywhere this kind of option. Any suggestion?
0
votes
0answers
20 views

change of DATASET RECORD causes screen flicker in angular DATATABLES

I am using angular datatables. I have used the ng-repeat to to render all the values on DOM. Let say I am using products as my primary data collection and dummy products as secondary. I am using my ...
1
vote
1answer
54 views

Paging is reset when data is updated with Angular-DataTables

We have a Web form using Angular DataTables (DataTables 1.10.10 / angular-datatables - v0.5.3). We are feeding the data with a JSON coming from the backend. The table is configured with paging, and ...
0
votes
0answers
13 views

Using angularjs version by Louis LIN of datatables. Reload data refresh all the files and redraw

If I use a scope Json variable for the the data of a table using ng-repeat, so I’m using datatables with the angular way like this example ...
1
vote
1answer
59 views

how to customize angular-datatables' style

I'm new to angular, trying to use angular-datatables library http://l-lin.github.io/angular-datatables/#/angularWay, but don't know how to control the style of the table, cause they are all angular ...
0
votes
1answer
53 views

Angular Datatables: Unknown provider

Hej guys. I'm new to JS and Angular trying to implement the angular-datatable version in my project. First I used the "angular-way", which turned out to be a bad decision based on performance. I ...
0
votes
1answer
52 views

Using $resource with angular datatable

I am currently implementing $http for querying data with angular datatable. How could $resource be implemented instead? function serverData(sSource, aoData, fnCallback, oSettings) { var request ...
1
vote
1answer
79 views

Angular datatable search filter on “search” press

I am using server side processing with angular datatable. Is there anyway to turn off auto filtering in the search box and make it to search/filter (ajax call to server side) only when search button ...
1
vote
1answer
86 views

Angular-Datatables wrong sorting on date

I'm using the angular-datatables plugin in my project, which works fine on all types, except for dates. Example DESC: 01/01/2016 01/08/2015 01/08/2015 01/09/2015 Example ASC: 31/12/2015 ...
0
votes
0answers
34 views

change angular datatables filter's look

We are using angular datatable and in the backend webapi. We are using Light-column-filter http://l-lin.github.io/angular-datatables/#/withLightColumnFilter for serverside processing and it works ...
1
vote
1answer
32 views

how can i add title to angular datatables

$scope.dtColumns = [ DTColumnBuilder.newColumn('employee.employeeCode').withTitle("Employeecode").withOption('autoWidth', false), DTColumnBuilder.newColumn('employee.workMailId') ...
0
votes
2answers
63 views

The Data is printed in console, Assigned to $scope but NOT printing in HTML

Update Problem: Let me try to explain what I want in one or two lines, In Demo 1 where I've used Angular Datatables when I click on Edit button the data DOES NOT appear in Edit form, whereas in Demo ...
2
votes
1answer
46 views

how to get the search box value in angular datatable?

I'm using angular datatable plugin, and I want to get the value of the search box that comes with the generated datatable. Angular datatable has a few options to make a datatable, but any of them ...
1
vote
1answer
63 views

angular-datatables in a directive. Cant call function in withFnServerData()

i have a question about calling a function in a Angular directive. Below is my directive, where i want to encapsulate the code from the controller. From the controller i get the URL and the columns. ...
0
votes
1answer
84 views

On demand data load using Scrolling in AngularJS datatable

I have used angular datatable in my application. I applied the options as given below, $scope.dtOptions = DTOptionsBuilder.newOptions() .withOption('responsive', true) ...
1
vote
1answer
60 views

jQuery DataTables recreation on data update with socket.io

I'm using jQuery DataTables with socket.io on AngularJS, and I'm pushing an item to the data binding list on a socket message and digesting afterwards. When it happened, the datatable recreated itself ...
0
votes
1answer
48 views

Angular Datatables: cannot call destroy/edit function

I cannot access the API methods mentioned in this doc, as well as the destroy method described here . the HTML: <table datatable dt-instance="dtInstance" dt-options="dtOptions" ...
0
votes
1answer
39 views

How to create a jasmine unit test when using angular-datatables

I am using angular-datatables in my project and I would like to write a Jasmine/Karma unit test for it. This is code from my controller: $scope.dtOptions = ...
1
vote
1answer
70 views

How to handle no records found in angular datatables

I am using angular-datatables in my app. I don't know how to handle when ajax source returns empty array. I am expecting to show some message to indicate "No Records found". $scope.dtOptions = ...
0
votes
0answers
99 views

Angular-Datatables next page issue with iCheck

I am trying to do some experiment with an iCheck (http://fronteed.com/iCheck/) control in an angular-datatables to select rows and just noticed that when the next page is rendered the whole container ...
1
vote
1answer
87 views

columnFilter plugin not working with Angular DataTables Server Side Processing

I am using Angular datatables (https://github.com/l-lin/angular-datatables) with server side processing, everything works fine if I didn't add the column filter But once I add the withColumnFilter ...
0
votes
0answers
17 views

l-lin Angular-Datatables anybody knows how launch a repaint or a refresh

I'm with a project using this plugin https://github.com/l-lin/angular-datatables It is used it with the native css/JS for add responsive and is a paginated grid. If not a lot of data behave very ...
0
votes
1answer
108 views

Angular DataTable not populating DTInstance

I am not getting my DtInstance populated after rendering. Anyone faced this issue. <div ng-controller="InventoryTableController as vm"> <table datatable="" ...
0
votes
1answer
63 views

How can i edit contents of a <td> using angular-datatables?

Table in a project is now implemented like this: <table datatable="" dt-options="vm.dtOptions" dt-columns="vm.dtColumns" class="table table-custom"></table> The code related to this ...
0
votes
1answer
205 views

Smart-Table vs. Angular-DataTables

For displaying my tabled data I am currently using the angular datatables Here's the link. I am mostly satisfied with it up to some things. The only problem with the angular datatables is, that I ...
0
votes
0answers
68 views

How to add row to angular-datatable but with specific templates in cells

Angular-datatables is used in a project. In template it looks like this: <table datatable="ng" id="userGroupsTable" dt-options="vm.dtOptions" dt-column-defs="vm.dtColumns" class="table ...
2
votes
1answer
67 views

Angular Datatable not filtering with column reorder

In JavaScript, I have $scope.dtOptionsCandidate = DTOptionsBuilder.newOptions() .withColReorder() .withLightColumnFilter({ 1: {"type": "text"}, 2: {"type": "text"}, 3: ...
1
vote
1answer
174 views

How invoke angular datatable pagination refresh callback after data update?

I have angular datatable config which works fine. My config looks like vm.dtOptions = DTOptionsBuilder.newOptions(). withPaginationType('full_numbers'). //withOption('ajax', ...
1
vote
1answer
65 views

angular datatables not being rendered properly

i am trying to use angular datatables with my angular js project but it seems something is being missed , can someone please help me out links : - <script ...
0
votes
0answers
236 views

Angular JS datatable serverside script is not working

Hi Iam using Angular JS with Node. When i use client side in angularjs datatable when huge no.of records are obtained [> 5000 records] the browser goes to unresponsive state. So i tried using server ...
0
votes
0answers
90 views

Angular Datatables infinite(paged) scrolling

I have implemented a grid with: https://l-lin.github.io/angular-datatables/ <table datatable="ng" dt-options="vm.dtOptions" dt-column-defs="vm.dtColumnDefs" class="table table-striped ...
0
votes
2answers
400 views

Angular Datatables: How to render column with model binding?

Is there a way to render a column with model binding in textbox using DTColumnBuilder? Something like: DTColumnBuilder.newColumn('ColumnName').withTitle('Column Name').renderWith(function (data) { ...
1
vote
1answer
872 views

Angularjs Datatable server side pagination

I'm trying to make Angularjs Datatable server side pagination in this link https://l-lin.github.io/angular-datatables/#/serverSideProcessing So I use this code $scope.dtOptions = ...
0
votes
0answers
41 views

Issue in merging angular-datatable with the drag-drop directives

I am having some problem with Column reordering in angular-datatable(angular-datatables), Please have a look at : angular-datatable column draggable out of the table, to better understand the ...
2
votes
1answer
125 views

angular-datatable column draggable out of the table

Is it possible to avoid the column, not to drag out of the data-table view area, as you can make out yourself, what I am talking about from this link ...
0
votes
2answers
203 views

Assign $scope variables inside a promise then method for angular datatables directive?

I am not sure what the issue is, but it seems the datatables directive is being initialized before my $scope is defined. What's more, it seems the variables getting set twice. I have a userService ...