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
boolean型の値でcheckbox要素の値を更新できない。
(HTML)
<form> <input type="checkbox" name="chk1"> </form>
(JS)
var data = { chk1: true } this.formController.setValue(data);
以下のコードの厳密比較が不要と思われる。 h5.ui.FormController.js l.2178
$(this).prop('checked', $(this).val() === value);
The text was updated successfully, but these errors were encountered:
#538 FormController#setValue() boolean型の値でcheckbox,radioの値を設定できるよう修正。
f43fbbc
不要な厳密比較を除去。
#538 FormController#setValue()
6214e0f
boolean型の値でcheckboxの値を設定されることを確認するテストケースを追加。
simdy
No branches or pull requests
boolean型の値でcheckbox要素の値を更新できない。
(HTML)
(JS)
以下のコードの厳密比較が不要と思われる。
h5.ui.FormController.js l.2178
The text was updated successfully, but these errors were encountered: