0

Dojo : FilteringSelect 、必須: "false" 、機能しない

私のコード構造は、

var user_search = new FilteringSelect({
                        id: "user_search",
                        name: "user_search",
                        searchAttr: "displayName",
                        type: "text",
                        required: "false",
                        autoComplete: true, 
                        labelFunc: formatLabel,
                        labelType: "html",
                        invalidMessage: "No user found",
                        style: "width: 166px;height:28px;background-color:white"
                    }, this.user_search);

誰でも助けることができますか?

ありがとう!

4

1 に答える 1

3

プロパティは文字列ではなくrequiredブール値である必要がありますか?false"false"

 ...
 type: "text",
 required: false,
 autoComplete: true, 
 ....
于 2012-07-31T07:08:50.587 に答える