我知道通过声明方法将passFunction分配给WizardPane的方法。 通过下面我们可以指定passFunction:
<div dojoType="dojox.widget.WizardPane" id="myId" passFunction='ValidateInfo'>
我想通过编程方式创建相同的功能。我正在使用下面的代码创建小部件
var wizard = new wizard({style: "width:100%;height:400px"}, "myDataSetWindow");
wizard.addChild(new WizardPane({label: 'Create', id: 'myId', content: "Content 1"}));
wizard.startup();
我想通过属性'passFunction'添加函数'ValidateInfo'。你能告诉我怎么办吗?
答案 0 :(得分:0)
在wizard.set("passFunction", ValidateInfo)
之前尝试startup()
。