Alexander Trauzzi
Alexander Trauzzi

Reputation: 7396

dojox.widget.Wizard not rendering buttons

I have a Wizard widget that I'm loading via async into a ContentPane. The first WizardPane shows up once it's loaded, but the buttons along the bottom do not.

Oddly, when I inspect the DOM for my page, the entries for the button regions are there. They highlight the corresponding areas for buttons when I hover over them. There's just nothing there!

This is happening on both Chrome and Firefox.

Any ideas as to what might be going on here? Is there a trick to loading dojo widgets async that I might be missing?

Upvotes: 0

Views: 701

Answers (1)

mrtom
mrtom

Reputation: 2156

You're simply missing the Wizard CSS. Add the following CSS

http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojox/widget/Wizard/Wizard.css (or locally if you're loading Dojo locally).

http://jsfiddle.net/kfranqueiro/gLXHr/ updated and works

Upvotes: 2

Related Questions