/* This file contains custom javascript written for the telerik controls.*/

/* Disables the javascript for the export button.  This must be done
or the export will not work
*/
function disableJavaScriptForExportButtons(ajaxManager, eventArgs)
{           
    if ( eventArgs.EventTarget.indexOf("ExportToExcel") != -1)  
    {                
        eventArgs.EnableAjax = false;
    }
}
