We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents de06fed + 821fb54 commit 008289eCopy full SHA for 008289e
js/render-datatables.js
@@ -90,6 +90,7 @@
90
}
91
92
93
+ var additional = [];
94
for (i in chart.settings) {
95
var valoo = chart.settings[i];
96
@@ -114,10 +115,16 @@
114
115
if(array.length === 2){
116
i = eval( array[0] ); // jshint ignore:line
117
i[ array[1] ] = valoo;
118
+ additional[ array[0] ] = i;
119
+ if(array[0] === 'select' && array[1] === 'info' ){
120
+ // enable main info or the selection info will not show.
121
+ $.extend( settings, {info: true} );
122
+ }
123
+ } else {
124
+ settings[i] = valoo;
125
- settings[i] = valoo;
126
-
127
+ $.extend( settings, additional );
128
$.extend( $.fn.dataTable.defaults, settings );
129
130
cols = [];
0 commit comments