Skip to content
New issue

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

h5.ui.FormController input要素にtitle属性が指定されているとbsBalloonの表示がおかしくなる #559

Closed
mtakeuchi opened this issue May 10, 2016 · 0 comments
Assignees
Labels
Milestone

Comments

@mtakeuchi
Copy link
Contributor

Bootstrap ver 3.0から、title属性の値をメッセージとして表示するよう仕様が変更されているため、
BootStrap 3.0以降を使用して、title属性が指定されている入力フィールドにバリデーションエラーを表示させると、一回目のバルーン表示がtitle属性に指定した値がバルーンに表示されてしまう。

参考サイト
https://atstyle.biz/blog/archives/2013/07/13/0033/

再現コード

<form id="form1">
  <input type="text" name="field1" title="hogehoge">
  <input type="button" value="確認" id="btn1">
</form>
h5.core.controller('body', {
  formController: h5.ui.FormController,
  __meta: {
    formController: {
      rootElement: '#form1'
    }
  },
  __name: 'PageController2',
  __ready: function() {
    this.formController.addOutput('bsBalloon');
    this.formController.setSetting({
      property: {
        field1: {
          displayName: '名前',
          message: '{displayName}が未入力です。'
        }
      }
    });

    this.formController.addRule({
      field1: {
        required: true
      }
    });
  },
  '#btn1 click': function() {
    this.formController.validate();
  }
});

実行結果
result

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants