Stackoverflow 10605973

http://stackoverflow.com/questions/25332125/adjust-sorting-of-multiselectcombo-box-in-dojo

HTML

<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/dojo/1.10.0/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.10.0/dojox/form/resources/CheckedMultiSelect.css">
<div id="list"></div>

JavaScript

require([
    "dojo/_base/array",
    "dojox/form/CheckedMultiSelect",
    "dojo/domReady!"
], function(array, CheckedMultiSelect) {
    var options = [
        {value: "VI", label: "Vehicle Info", selected : "selected" },
            {value: "PP", label: "PartsPro"},
            {value: "PC", label: "eParts Catalog"},
            {value: "EZ", label: "EZ Wiring"},
            {value: "DD", label: "DDCSN"},
            {value: "SL", label: "Service Link"},
            {value: "QC", label: "Quick Claim"}
    ];
    
    var select = new CheckedMultiSelect({
        dropDown: true,
        multiple: true,
        label: "Select something..."
    }, "list");
    
    select.startup();
    
    array.forEach(options, function(option) {
        select._addOptionItem(option;
    });
    
    select._updateSelection();
    

});