Current markup looks like this:
<div data-dojo-type="dijit.form.DropDownButton" data-dojo-props="dropDownPosition: 'above'">
<span>413</span>
<div data-dojo-type="dijit.TooltipDialog">
<button data-dojo-type="dijit.form.Button">413</button>
<button data-dojo-type="dijit.form.Button">617</button>
<button data-dojo-type="dijit.form.Button">860</button>
<button data-dojo-type="dijit.form.Button">203</button>
</div>
</div>
Everything worked fine until I added the data-dojo-props attribute. With the attribute in place, the widget won’t render the dialog at all.
Thanks in advance for any help!
The docs you quote indicate that
dropDownPositiontakes an array, not a single string. Changedata-dojo-props="dropDownPosition: 'above'"todata-dojo-props="dropDownPosition: ['above']“e.g.
http://jsfiddle.net/RoystonS/E4RHv/