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
4 views

Angular Datatables set column names from ajax json response

How can I load angular datatables column names from a json data response from an ajax call? I'd like not to have to explicitly name the columns (e.g. DTColumnBuilder.newColumn('AeId').notVisible() ). ...
2
votes
0answers
27 views

Angular-material-data-table doesn't work

I'm doing a web app and I'm using angular-data-table to display data in infinite scroll. Now, for testing, I'm using a very little table (height: 150px), and I want to retrieve 4 items each time the ...
0
votes
0answers
7 views

Styling filter and pagination controls of angular-datatables using withBootstrapOptions

I'm trying to affect the appearance of the filtering and pagination controls of angular-datatables and found out that it can be done using the withBootstrapOptions of the framework. However, I can't ...
0
votes
1answer
24 views

Angular datatables hide column

I am willing to hide some columns (actually from the example below the column with index 6) from user view but still want to have them in the DOM to make search access the values. I use ...
1
vote
3answers
1k views

Custom loading in Angular Datatables

im trying to implement my custom loading in angular datatables. I checked the docs :https://l-lin.github.io/angular-datatables/#/overrideLoadingTpl, there suggest an implementation: angular.module(...
0
votes
1answer
16 views

Export Filtered/Searched Data into Excel, from an angular datatable

I am trying to export the data in my angular data table into an excel Sheet, I am successfull in exporting the whole Json object into an excel sheet. What i am looking for is, to get the searched/ ...
-4
votes
0answers
25 views

angularjs - bootstrap - angular-datatables with server side paging, sorting & filtering using odata enabled webapi

I need to implement server-side paging, sorting & filtering using OData enabled WebApi with angularjs - bootstrap - angular-datatables, can anybody let me know is there any example available for ...
0
votes
1answer
34 views

Data tables ajax post user selected parameters and reload table data

I'm using Angular Data Tables (0.5.2) with DataTables 1.10.12 to load a Data Table instance. In the UI I provide a DatePicker (start and end date) for the user to select in order to limit the data by ...
0
votes
0answers
45 views

How to pass the DTOptionsBuilder and DTColumnBuilder to the controller in angular-datatables

I started to learn AngularJS-1.5.7 and also angular-datatables. I followed some examples in this page https://l-lin.github.io/angular-datatables/#/withResponsive the one that is for responsive tables, ...
1
vote
2answers
40 views

Angular-DataTables - Searching for a specific html-class value

I would like to filter datatable table by a attribute class name. Here is some image. The idea is, to click on the star icon near the table header to show only entries, which are favorite. I ...
1
vote
1answer
31 views

Angular - Datatable click row event

I am working with AngularJS and angular-datatable and I want to work with the event in a row, I have setup the controller to listen the event but it is not work. My code is : html <div class="...
-1
votes
1answer
35 views

What is .withDOM('frtip')?

Hey can anyone please tell me what is this 'frtip' inside the .DOM() and is there any documentation to understand this ?
2
votes
2answers
49 views

Angular datatables: sort non-textual data

Is there a way to create custom sorting for a column containing non-textual data? Here is a snapshot: I would like to sort by the icon symbol. P.S. The both icons are shown using ng-if and a ...
1
vote
1answer
25 views

Angular Datatables Server Side Search Request is Returning Empty Object

Problem I'm using server side pagination and search, pagination is working fine but when i enter some text into search box which automatically sends request to server, it immediately returns back ...
0
votes
1answer
77 views

How obtain dtInstance in Angular DataTables?

I have problem with management several tables using Angular DataTables. Here are fragments of my html code: <table datatable="ng" dt-options="dtOptions" dt-instance="dtInstance" ...
3
votes
1answer
145 views

Want to filter rows with multi select drop down in table

In Table, I want to filter rows with multi select drop down. here is plunker. Example: When I select 2 country and 2 month in drop down then data so accordingly in table. HTML: <div id="...
0
votes
0answers
18 views

jQuery Datatables server side pagination with Restangular

How can I use server side pagination with Restangular? When I enable "withOption('serverSide', true)", Datatables will call the API twice: A regular call and a datatables call passing datatables ...
1
vote
0answers
28 views

jQuery Datatables Print Button - Columns not respecting print view bounds

I have a table with 18 columns but when I try to print, table go past the bounds of the page view. Table is not adjusting right to the page limit. https://s31.postimg.org/e2j2ptla3/IMAGE1.jpg The ...
1
vote
2answers
296 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
1answer
42 views

Angular Datatable Server Side pagination filtering, totalrecords, data are undefined

I'm trying to implement Angular Datatable Server side pagination but I'm getting the following error: TypeError: Cannot read property 'length' of undefined When I console the result in factory all ...
2
votes
1answer
87 views

In table, get selected row id in array

In table every row assosiated with checkbox and have option to check all row. I want to get selected rows id of table in array. Here is plunker code. HTML: <table id="datatable-buttons" class="...
0
votes
0answers
60 views

custom column filter in datatable with angularjs

I have implemented server-side processing datatable with angularjs refering this link. It works great. Now I want to add custom filter in the datatable like this. I have implemented custom search. But ...
0
votes
0answers
21 views

Angularjs auto update server side table like datatables

I researched the past week and didn't find anything over the internet(including here) about creating a table(maybe using ng-table or ng-grid) like datatables for jquery. Using PHP as server-side and ...
0
votes
0answers
65 views

Load/Reload the table data from a promise

I am trying to reload data into a grid from a button click which is mentioned here http://l-lin.github.io/angular-datatables/#/dataReloadWithPromise But i am getting this error below , can someone ...
0
votes
0answers
47 views

angularjs datatables TypeError: this.renderDataTableAndEmitEvent is not a function

Hello I'm new to angularjs, I've got an issue while using Angularjs datatables downloaded from http://l-lin.github.io/angular-datatables/#/zeroConfig, getting error like TypeError: this....
0
votes
0answers
53 views

Add select dropdown in DOM of angular datatables and refresh after fire change action

I add select dropdown in DOM of angular-datatable existing in github Click here for Referecnce app.controller('dataTableCrtl', dataTableFunction); app.js function dataTableFunction($scope, $state, ...
0
votes
0answers
41 views

Yadcf Angular Integration

I have worked with jQuery Datatables and Yadcf in previous projects. This time I wanted to integrate Yadcf in Angular-Datatables. Normally you would attach the yadcf initialization right after the ...
1
vote
2answers
1k views

Angular datatables with filter column width

I tried to set width for column in angular datatables with filters. But width of the column not changed. I try following var columnsSpecification = [ { type: 'text', ...
0
votes
1answer
61 views

How to overwrite Materialize CSS with browser default CSS?

I'm making a web application using Javascript, AngularJS and Materialize CSS for my UI. Materialize CSS has been a great tool so far but I have a problem. I want to use Angular-Datatables for my ...
3
votes
2answers
3k views

angular-datatables with ColVis, sorting or hiding columns removes all data

I am using AngularJS with Angular-datatables (http://l-lin.github.io/angular-datatables/) and I am using the datatables ColVis plugin. The table renders fine but sorting the column headers OR using ...
0
votes
0answers
26 views

Issue with data table in Angular js when using $apply for invoke watcher

I am working on angular data table and getting issue related to $scope variable data not updating on UI after assign from second API, for this I used the $apply to invoke watcher and the UI is updated ...
0
votes
1answer
60 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 ...
0
votes
0answers
27 views

how to reload angular datatable?

I am using this datatable. tried this way. var dttable = $('datatable1'); var datatable = dttable.dataTable().api(); datatable.ajax.reload(null, false); but not working.
0
votes
0answers
31 views

How to refresh angular datatable with new data source?

I am using this datatable. In another angular directive I am using jstree. Based on the selected node of jstree. I want to reload datatable. key point is how to reload datatable1 with success data. ...
0
votes
0answers
51 views

angular $q deferred promise in angular datatables

I am trying to load data into an angularJs datatable. I can log deferred.promise. But I can't get it to return the Json object that the angular datatables need. Here is the controller app.controller(...
1
vote
1answer
19 views

How should I set loadingRecords string or HTML element for angular-datatables

In native Datatables I set the loadingRecords like this: var language = { "loadingRecords": '<img src="~/img/datatable_loading_bar.gif" />' } When loading data, it will show ...
0
votes
0answers
34 views

“No matching records found” remains after table population

The "No matching records found" row remains on my table, even though data has been loaded. The table is defined as follows: <table datatable dt-options="gvc.dtOptions" class="table table-...
0
votes
1answer
54 views

Uncaught TypeError: this.movie.setSheetName is not a function - Angularjs Datatable

Could someone let me know why am i getting this error. Uncaught TypeError: this.movie.setSheetName is not a function While using the buttons in Angularjs Datatable mentioned here https://l-lin....
0
votes
1answer
43 views

why angular-datatables plugin buttons doesn't work

I am using angular-datatables from the following resource: http://l-lin.github.io/angular-datatables/#/welcome I am trying to run the example of 'with buttons' from here: http://l-lin.github.io/...
0
votes
3answers
144 views

Can't workout how to reload angular-datatable after deleting records from the database

I can't seem to work out how to redraw my Angular-Datatable after I delete a record from my database. I don't get any errors, but the table never seems to redraw unless I manually refresh the page. ...
1
vote
1answer
80 views

Angular JS Datatables row click event add dynamic AngularUI Tab

I wanted to do a browser like tabs but the event will be triggered inside a angular datatables (im using this one - angular-datatables). I have already setup the controller to listen on click per row ...
0
votes
0answers
68 views

Page number UI on Pagination on AngularJS Datatables

I have configured this module on AngularJS angular-datatables and i have found out that there is a UI error when i try to hover on the page number on the lower right side of the table.. see pic As ...
0
votes
0answers
128 views

Angular datatables ajax pagination using nodejs and mongodb

I'm trying to implement server side pagination in angular datatables but unfortunately I'm completely failed, can some one pls have a look into my code. No product showing in table, how I can ...
0
votes
0answers
72 views

Angular-Datatable Buttons will not render

I have followed this example thoroughly and still cannot render any of the buttons on a datatable I am drawing using server-side processing. Here is the code: vm.dtOptions = DTOptionsBuilder....
0
votes
0answers
28 views

Angular datatables with ng-repeat and FixedColumns : remove row

I use angular-datatables with ng-repeat to display rows. The two first rows are fixed withFixedColumns({leftColumns: 2}). the function splice doesn't work to remove row. it doesn't remove row's cells ...
0
votes
1answer
60 views

angular-datatables change interface language

I am currently using angular-datatables. How can I see the interface of the table in other languages? I mean the "Show entries", "Search:", "Showing 1 to 10 of 20 entries" literals fore example in ...
0
votes
0answers
39 views

AngularJs Datatables not able to iterate columns on html using ng-repeat

Hi I am working on Angularjs Datatables and trying to iterate the columns and rows using ng-repeat but its not working. I checked the document but not able to find the exact way to pass columns and ...
0
votes
0answers
54 views

Dynamic datatables pagination with custom filter?

I have implemented jquery-datatables with angularjs. Everything was working fine if i use default filter length which was provided by datatables library. when i used my custom filter length with other ...
5
votes
1answer
278 views

Cannot read property 'aDataSort' of undefined in angular datatables

I am trying to implement angular-datatables in my project but it returns "TypeError: Cannot read property 'aDataSort' of undefined I am using Angular js version 1.4.9. Jquery version 2.1.1 ...
0
votes
2answers
1k views

Changing columns dynamically with angular-datatables

I am using angular datatables, an angularized version of the popular jquery datatables library. Here is my html <body ng-controller="TestCtrl"> <input type="button" ng-click="...