﻿// JScript File
BLACKBAUD.netcommunity.DirectoryOutput = new function() {
    var $$ = BLACKBAUD.netcommunity.jQuery.v1_3_2;
    var that = this;


    this.init = function() {
    $$(".DropDownConvert").dropdownchecklist({
            firstItemChecksAll: true,
            maxDropHeight: 200,
            textFormatFunction: function(options) {
                var selectedOptions = options.filter(":selected");
                var countOfSelected = selectedOptions.size();
                var size = options.size();
                switch (countOfSelected) {
                    case 0: return "";
                    case 1: return selectedOptions.text();
                    case size: return "All";
                    default: return countOfSelected + " Selected";
                }
            }

        });
    };

};
        

////////////////////////////////////////////
// End of script
if (typeof (Sys) !== 'undefined') {
    Sys.Application.notifyScriptLoaded();
}
////////////////////////////////////////////
// Do not add any code below this
////////////////////////////////////////////
