@@ -237,8 +237,9 @@ function buildHeaders(table) {
237
237
( columnDef == table . state . columnDefSorted && table . state . sortAsc ?
238
238
table . handleSort . bind ( null , columnDef , false ) : table . replaceData . bind ( null , table . props . data , true ) ) } ,
239
239
React . DOM . div ( { style : { textAlign : "center" } , className : "rt-header-element" , key : columnDef . colTag } ,
240
- React . DOM . a ( { className : textClasses ,
241
- onClick : table . props . filtering && table . props . filtering . disable ? null : toggleFilterBox . bind ( null , table , columnDef . colTag ) } ,
240
+ React . DOM . a ( { className : textClasses
241
+ //onClick={table.props.filtering && table.props.filtering.disable ? null : toggleFilterBox.bind(null, table, columnDef.colTag)}
242
+ } ,
242
243
table . state . firstColumnLabel . join ( "/" )
243
244
) ,
244
245
React . DOM . input ( { style : ss , className : ( "rt-" + columnDef . colTag + "-filter-input rt-filter-input" ) + ( table . state . filterInPlace [ columnDef . colTag ] ? "" : " rt-hide" ) ,
@@ -267,8 +268,9 @@ function buildHeaders(table) {
267
268
( columnDef == table . state . columnDefSorted && table . state . sortAsc ?
268
269
table . handleSort . bind ( null , columnDef , false ) : table . replaceData . bind ( null , table . props . data , true ) ) } ,
269
270
React . DOM . div ( { style : style , className : "rt-header-element rt-info-header" , key : columnDef . colTag } ,
270
- React . DOM . a ( { className : textClasses ,
271
- onClick : table . props . filtering && table . props . filtering . disable ? null : toggleFilterBox . bind ( null , table , columnDef . colTag ) } ,
271
+ React . DOM . a ( { className : textClasses
272
+ //onClick={table.props.filtering && table.props.filtering.disable ? null : toggleFilterBox.bind(null, table, columnDef.colTag)}
273
+ } ,
272
274
columnDef . text
273
275
) ,
274
276
React . DOM . input ( { style : ss , className : ( "rt-" + columnDef . colTag + "-filter-input rt-filter-input" ) + ( table . state . filterInPlace [ columnDef . colTag ] ? "" : " rt-hide" ) ,
@@ -1422,7 +1424,7 @@ function _computePageDisplayRange(currentPage, maxDisplayedPages) {
1422
1424
var rootNode = createTree ( this . props ) ;
1423
1425
var selections = _getInitialSelections ( this . props . selectedRows , this . props . selectedSummaryRows ) ;
1424
1426
// FILTERING NOT READY****************
1425
- this . props . filtering = { disable : true } ;
1427
+ // this.props.filtering = {disable: true};
1426
1428
// ******************
1427
1429
return {
1428
1430
rootNode : rootNode ,
0 commit comments