-renamed AIRTIME_DEV_README to AIRTIME_DEV_README_COLUMN_FILTER

-added new diff file for dataTables.ColVis.js
This commit is contained in:
denise 2012-09-13 17:19:08 -04:00
parent c35c76351b
commit 97a0a82dc3
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
Before you overwrite dataTables.ColVis.js, note that we have changed a few lines
in this file.
The following function has been modified:
_fnDomBaseButton
The new _fnDomBaseButton looks like this:
"_fnDomBaseButton": function ( text )
{
var
that = this,
nButton = document.createElement('button'),
nSpan = document.createElement('span'),
sEvent = this.s.activate=="mouseover" ? "mouseover" : "click";
//nButton.className = !this.s.dt.bJUI ? "ColVis_Button TableTools_Button" :
//"ColVis_Button TableTools_Button ui-button ui-state-default";
nButton.className = "btn-toolbar btn btn-small dropdown-toggle ColVis_MasterButton";
nButton.appendChild( nSpan );
$(nButton).append("<span class='caret'></span>");
nSpan.innerHTML = text;
$(nButton).bind( 'click', function (e) {
that._fnCollectionShow();
e.preventDefault();
} );
return nButton;
},