We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FormController#setSetting()でbsBalloonプラグインのreplaceElementプロパティを設定した状態でFormController#validate()を実行後、 入力チェックに引っかかった要素にフォーカスをあてるとバルーンが表示されるが、 フォーカスアウトしてもバルーンが非表示にならない。
・サンプルコード
this.formController.setSetting({ output: { bsBalloon: { container: 'body', replaceElement: function(args) { if (args.name === 'xxx') { return document.getElementsByClassName('yyy')[0]; } } } } )};
The text was updated successfully, but these errors were encountered:
hifive#591
810cb29
h5.ui.validation.ErrorBalloonの_setErrorBalloon()内で呼び出す_hideBalloon()に渡すパラメータを、_setErrorBalloon()で渡ってくる引数「element」ではなく、_setErrorBalloon()内で定義した変数「target」を渡すように修正
replaceElementの設定が適用されていなかったのを修正した。(ver.1.3.2で修正)
Sorry, something went wrong.
simdy
No branches or pull requests
FormController#setSetting()でbsBalloonプラグインのreplaceElementプロパティを設定した状態でFormController#validate()を実行後、
入力チェックに引っかかった要素にフォーカスをあてるとバルーンが表示されるが、
フォーカスアウトしてもバルーンが非表示にならない。
・サンプルコード
The text was updated successfully, but these errors were encountered: