angular-datatables is a wrapper for jQuery dataTables. It exposes an Angular module that provides a datatable directive along with datatable options helpers.
0
votes
0answers
6 views
Possible to use angular-datatables with serverside array sourced data instead of object sourced data
I'm trying to use angular-datatables with serverside processing. However, it seems that angular-datatables expects that the data from the server is in object format (object vs array data described) ...
0
votes
0answers
10 views
angular datatables server pagination
I am trying to implement server-side pagination on an angular datatable but I keep on getting the following error: Error: You cannot use server side processing along with the Angular renderer!
Please ...
1
vote
0answers
15 views
Column filter makes search value search=[object Object]
Search is working find but when I tried using column filter, search value change to search=[object Object] .
FULL URL: http://localhost:8000/locations/?draw=2&columns=[object Object],[object ...
0
votes
0answers
14 views
l-lin/angular-datatables, col resize but need no wrap cells content in tables on first load
Currently I use l-lin/angular-datatables and the col resize plugin in order the user resize width columns. But still I need no wrap content when first load the table so the columns on first load must ...
0
votes
0answers
12 views
Angular table customization [closed]
I want to user angular data table for customization (i.e column reorder, show/hide columns, header customization ) Angular- datatables and i need to store the customization column to the database for ...
0
votes
0answers
22 views
angularjs Datatables Cannot Reinitialize Table Error
I am using angularjs Datatables and keep running into an error.
DataTables Warning: table id=DataTables_Table_0 - Cannot reinitialise Datatable.
I have two watches to run the report as the user ...
0
votes
0answers
17 views
How to use jeditable with angular-datatable
Is it possible to use jeditable with angularjs datatable? I want to be able to edit a cell in place.
0
votes
0answers
24 views
Angular datatable auto redirect to first page
After change data of row in page 2 or later, data table auto redirect to first page.
How to I can disable it ?
Example
codepen.io/l-lin/pen/QbMmxP?editors=101
0
votes
0answers
42 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
1answer
47 views
AngularJs Datatables implementation
I am new to AngularJs and i want to implement a data-table like we do in JQuery for that i came across Louis Lin Angular-datatable i have copied the html and JS as is from the site , but still i am ...
0
votes
0answers
26 views
Leave out column in a angular datatable from ng-repeat
I want to use ng-repeat directive only for some specified column of a datatable
for example:
<table id="coordinateconto" datatable="ng-binding" dt-options="controllerCoo.dtOptions"
...
0
votes
0answers
33 views
How to use angular-datatables the “angular way” with client side model paging?
The "angular way", as described in the angular-datatables docs, is slow for large data sets due to the fact that it renders a table row for every element in the set. The performance would increase ...
0
votes
0answers
29 views
Getting c.fn.dataTable.FixedColumns is not a constructor
I am using Angle and Datatables. I'm trying to freeze my table's first column, to do that, I have imported the datatables.fixedColumns (if I check on the generated base.js the plugin is there), but ...
0
votes
0answers
31 views
Error to set Angular DataTable dependencies in the controller
When trying to put together a table with Angular DataTable accuses the error (This only happens when seto dependencies on the controller):
I'm making the call of DJS files (are being successfully ...
0
votes
1answer
9 views
datatables read language option from cookie
I'm using angular-datatables(based on jquery-datatables), reading language from Json files. It's not hard to switch datatables language through something like $scope.dtOptions.language.url = ...
2
votes
1answer
57 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
35 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
63 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
28 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
32 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
28 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
68 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 ...
12
votes
3answers
279 views
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 ...
2
votes
0answers
63 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
33 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
29 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
33 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
33 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
24 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
29 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
89 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
25 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
84 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
75 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
77 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
136 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
135 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
49 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
39 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
70 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
58 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
108 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
145 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
92 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
64 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
73 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
107 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
123 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
115 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
18 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 ...