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
13 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
0answers
20 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 ...
1
vote
1answer
40 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 ...
2
votes
1answer
64 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: ...
0
votes
1answer
19 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
14 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
17 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
1answer
185 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
10 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
26 views
how can i add title to angular datatables
$scope.dtColumns = [
DTColumnBuilder.newColumn('employee.employeeCode').withTitle("Employeecode").withOption('autoWidth', false),
DTColumnBuilder.newColumn('employee.workMailId') ...
1
vote
1answer
44 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 ...
2
votes
1answer
42 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 ...
0
votes
1answer
43 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
54 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
40 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 ...
0
votes
2answers
59 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 ...
1
vote
1answer
61 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
73 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
32 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
50 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. ...
1
vote
1answer
687 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
1answer
65 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)
...
0
votes
1answer
45 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" ...
1
vote
1answer
42 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 ...
1
vote
1answer
267 views
Angular Store Data and Reload Datatable
I'm using
datatable: https://l-lin.github.io/angular-datatables
and bootstrap: https://angular-ui.github.io/bootstrap/
this what i try to achive: after add data using modal from bootstrap and save ...
0
votes
1answer
30 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
108 views
Sorting of numbers within brackets in angular datatables
I am using Angular datatables to populate my table based on a webservice response. My webservice returns me a json like below
[
{
"id": 1,
"name" : "abc",
"count": "(20)"
},
{
"id": 2,
...
1
vote
1answer
225 views
How to call the destroy function of angular datatables?
I have a controller and I want to call the destroy function of Jquery Datatables in the controller in a watch method:
$scope.$watch('model.SelectedWaiver', function() {
if ...
1
vote
1answer
63 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 = ...
1
vote
1answer
74 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
89 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 ...
2
votes
1answer
110 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
325 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) {
...
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
89 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
504 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" ...
0
votes
0answers
60 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 ...
1
vote
1answer
58 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 ...
1
vote
1answer
146 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', ...
0
votes
0answers
207 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
77 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
0answers
37 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 ...
0
votes
2answers
180 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 ...
0
votes
1answer
70 views
Angular Datatables use source object
With Angular Datatables I want to pre-load a JSON object with Ajax so that I can re-use the object elsewhere without doing another ajax request.
But how do I load this object into the datatable?
...
0
votes
0answers
143 views
Properly toggle a hidden table to visible with angular-datatables?
I have 2 tables, one displayed, the other one hidden:
<div ng-show="displayed('active')" ng-controller="DataTablesCtrlA as datatables">
<table datatable="" ...
0
votes
0answers
92 views
Angular datatable sum of rows by pagination
I spent 4 hours to find the solution but nothing!!
I want to show the sum of Angular datatable rows base on pagination but it is not working,
showing me sum of all records ..!
Any Suggestion?
Here is ...
1
vote
1answer
251 views
$elem.hide is not a function in angular-datatable
I want to use pagination plugin angular-datatable .I installed it with bower but it does n't work.It gives the below error
TypeError: $elem.hide is not a function
at Object.showLoading ...
0
votes
1answer
114 views
angular datatables ng-repeat doesn't work
I'm using angular-datatables but when I'm using ng-repeat, the functions of datatables doesn't work (sort, search, count, etc)
HTML:
<table datatable="" class="table table-striped ...
0
votes
2answers
85 views
ui-sortable with angular datatables
I have been trying to use Angular-ui-sortable to reorder the rows in an Angular-datatables. Reorder is not happening. However, if i try with normal table, it is working fine. If possible please help ...
1
vote
1answer
69 views
Datatable doesn't refresh correctly after $scope change
Hi I have a problem with Angular and Datatables. I have a table of items and when a socket.io event comes in, I change the $scope. The problem is, that the datatable change the $scope, but it keeps ...