The angular-datatables tag has no usage guidance.
0
votes
1answer
13 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 ...
0
votes
0answers
12 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
31 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
2answers
26 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
28 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
2answers
103 views
Angular datatables Fixed Columns undefined is not a function
I used angular datatables with fixed column, my HTML code for view as the following:
<div class="row" ng-controller="PerformanceCtrl">
<table id="example" datatable=""
...
0
votes
0answers
33 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 ...