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
2answers
28 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 ...
0
votes
2answers
80 views
angular-datatables dynamically change empty table message
I know one can easily change the default config for empty message during the table init.
DTDefaultOptions.setLanguage({sEmptyTable:' custom'})
I have a page where I reload the table content from a ...
0
votes
2answers
34 views
Is it possible to set a second ng-model value on an item?
I am trying to filter an angular-datatable. The search box by default searches all of the values in ng-model and filters the table accordingly.
I need to store the ID of the select list in the ...
1
vote
1answer
15 views
angular-datatables : How to remove “Show N entries” but leave pagination
There is a project that uses angular-datatables. Now I need to remove "Show N entries" dropdown from a page with such table, but leave pagination untouched. For now i've found this way -
...
0
votes
1answer
22 views
Angular datatables - rendered to combine data from multiple column
My angularjs controller code for datatable is given below. With DTColumnBuilder option how can i provide column renderer to show formatted data
$scope.dtOptions = ...
0
votes
1answer
46 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
28 views
Add elements to datatable
I'm using angular-datatables and wondering how could I add various elements such as buttons, text inputs etc to already rendered and set datatable. I think it may be possible through new angular ...
-1
votes
1answer
27 views
How to manually add files to your visual studio project from github
Can someone please explain how to correctly download files from Github and add them into your visual studio project? I've searched online and have been unable to locate a tutorial or walkthrough for ...
1
vote
0answers
52 views
ng-repeat with angular datatable plugin
I have been trying out ng-repeat option with angular datatable plugin (http://l-lin.github.io/angular-datatables). But I have been getting a loading symbol. I tried my code in jsfiddle - ...
0
votes
0answers
14 views
example needed for usage grunt-css-url-replace
I am trying use grunt-css-url-replace in my project. I need an example of the usage of the this.
I am trying to use angular datatables and glyphicons fonts which are specified in bower_components css ...
0
votes
0answers
73 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
28 views
Angular datatables, dynamically process requests server side
I'm a bit confused on the usage of angular data tables, particularly the server side processing section. I've got a list of columns on the DOM, picture it like this.
Col A
Col B
Col C
Col D
Col E
...
0
votes
0answers
97 views
Angular datatable select rows with data
I need to render a new table based on selected rows.
http://l-lin.github.io/angular-datatables/#/rowSelect
I need to pass the entire object instead of
ng-model="selected[' + full.id + ']"
which ...
0
votes
0answers
63 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 ...