dojo - Typeahead's items don't appear -
i'm integrating dojo-bootstrap's typeahead (https://github.com/xsokev/dojo-bootstrap) dojo project (inside dijit widget) , debugging , seeing filtered list in typeahead.js line 136
(this.menunode.innerhtml = items.join('');)
the typeahead's items list don't show anything. no errors on console.
any tips?
well, have lots of dijit widgets loaded vertically on page, needed edit typeahead.js line 73 from
domconstruct.place(this.menunode, document.body);
to
domconstruct.place(this.menunode, this.domnode.offsetparent || document.body);
and menu should be.
thanks anyway!
Comments
Post a Comment