JSFiddle - React, Tailwind, and code Playground
dijit.Tooltip connected to each option in a multiselect
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dijit/themes/claro/claro.css">
<select id="ms" multiple>
</select>
JavaScript
require(["dijit/form/FilteringSelect","dojo/Memory","dojo/dom-construct","dijit/Tooltip"], function(FilteringSelect, Memory, construct, Tooltip) {
/*
var options = dojo.query('option', dojo.byId('ms'));
var tt = new Tooltip({
connectId: options,
label: 'Foo'
});
*/
console.log("Buh");
/*
var myStore = new Memory({data: []});
myStore.put({id: 'val1', name: 'Valore 1'});
var mySelect = new FilteringSelect({
store: myStore,
name: ms,
id: ms
});
construct.place(mySelect.domNode, dojo.byId('ms'), 'replace');
*/
});