File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 11/*
22* File: jquery.dataTables.columnFilter.js
3- * Version: 1.5.1 .
3+ * Version: 1.5.2 .
44* Author: Jovan Popovic
55*
6- * Copyright 2011-2012 Jovan Popovic, all rights reserved.
6+ * Copyright 2011-2014 Jovan Popovic, all rights reserved.
77*
88* This source file is free software, under either the GPL v2 license or a
99* BSD style license, as supplied with this software.
112112 search_init = '' ;
113113 }
114114
115- var input = $ ( '<input type="text" class="' + search_init + sCSSClass + '" value="' + inputvalue + '"/>' ) ;
115+ var input = $ ( '<input type="text" class="' + search_init + sCSSClass + '" value="' + inputvalue + '" rel="' + i + '" />') ;
116116 if ( iMaxLenght != undefined && iMaxLenght != - 1 ) {
117117 input . attr ( 'maxlength' , iMaxLenght ) ;
118118 }
338338 if ( currentFilter == null || currentFilter == "" ) //Issue 81
339339 currentFilter = oSelected ;
340340
341- var r = '<select class="search_init select_filter"><option value="" class="search_init">' + sLabel + '</option>' ;
341+ var r = '<select class="search_init select_filter" rel="' + i + '" ><option value="" class="search_init">' + sLabel + '</option>' ;
342342 var j = 0 ;
343343 var iLen = aData . length ;
344344 for ( j = 0 ; j < iLen ; j ++ ) {
467467 r += '<button id="' + buttonId + '" class="checkbox_filter" > ' + labelBtn + '</button>' ; //filter button witch open dialog
468468 r += '<div id="' + checkToggleDiv + '" '
469469 + 'title="' + label + '" '
470+ + 'rel="' + i + '" '
470471 + 'class="toggle-check ui-widget-content ui-corner-all" style="width: ' + ( divWidthToggle ) + '%; " >' ; //dialog div
471472 //r+= '<div align="center" style="margin-top: 5px; "> <button id="'+buttonId+'Reset" class="checkbox_filter" > reset </button> </div>'; //reset button and its div
472473 r += divRowDef ;
You can’t perform that action at this time.
0 commit comments