3

私はラジオボタンのセットを2つ持っているフォームを持っています。各セットで、ユーザーは 1 つを選択する必要があります (ユーザーがどちらかを選択することを「考える」必要があるため、デフォルトでは 1 つを選択しません)。

ノックアウト 2.2.0 とKnockout Validationの最新バージョンを使用しています。ラジオ ボタンに問題があります。検証では、ラジオ ボタンが選択されていないと正しく判断されますが、ラジオ ボタンに css クラスが与えられません。cssをラジオボタン入力に適用するための検証を取得するにはどうすればよいですか?

理想的には、ラジオ入力が選択されていないと判断した後、グループ内の両方のラジオ ボタンに「invalidElement」の css クラスを適用したいと考えています。

*注意: 「invalidElement」の css クラスを、ラジオ ボタン入力を除く他のすべての入力に適用します。また、ラジオ ボタンの入力が選択されていない場合にそれらを強調表示するカスタムの作成も検討しましたが、これを行うには Knockout に慣れていません。

(function ($) {
    var viewModelSlide1;

    $(function () { // Document ready
        ko.validation.configure({
            decorateElement: true, // Indicates whether to assign an error class to the <input> tag when your property is invalid
            errorElementClass: 'invalidElement',  // The CSS class assigned to validation error messages
            registerExtenders: true,
            messagesOnModified: true, // Indicates whether validation messages are triggered only when properties are modified or at all times
            insertMessages: false, // Indicates whether <span> tags with the validation message will be inserted to the right of your <input> element
            parseInputAttributes: true // Indicates whether to assign validation rules to your ViewModel using HTML5 validation attributes
        });

        function viewModelSlide1Definition() {
            var self = this;

            self.loanPurpose = ko.observable("").extend({ required: true });          
            self.hasAccount = ko.observable("").extend({ required: true });

            //Validation observable(s)
            self.errors = ko.validation.group(self);

            submit: function () {
              if (viewModelSlide1.errors().length == 0) {
                alert('Thank you.');
              } else {
                alert('Please check your submission.');
                viewModel.errors.showAllMessages(); // This will apply the css styles to all invalid inputs except radio buttons
              }
           }

        };

        // Activate knockout.js
        viewModelSlide1 = new viewModelSlide1Definition();

        ko.applyBindings(viewModelSlide1, $("#step-step-0")[0]);

    }); // End document ready
})(jQuery);

バインディング付きの HTML...

  <div id="step">
    <fieldset id="custom-step-1" class="step" title="Getting Started">
      <label>Purchase</label><input class="required" type="radio" name="radioLoanPurpose" value="purchase" data-bind="checked: loanPurpose" />
      <label>Refinance</label><input class="required" type="radio" name="radioLoanPurpose" value="refinance" data-bind="checked: loanPurpose" />
      <br />      
      <label>Do you have an account</label>
      <span>Yes</span><input type="radio" name="radioHaveAccount" value="true" data-bind="checked: hasAccount" />
      <span>No</span><input type="radio" name="radioHaveAccount" value="false" data-bind="checked: hasAccount" />
    </fieldset>
  <input type="submit" class="finish" data-bind="click:submit"/>
</div>
4

1 に答える 1

2

これが KO または KO 検証の問題であるかどうかはわかりませんが、値の代わりにチェックを使用してバインドすると、 http://jsfiddle.net/uXzEg/1/に示すようにバリデーターが表示されません。

動作するJavaScriptは次のとおりです。

$(function () { // Document ready


  var viewModelSlide1Definition = ko.validatedObservable({
      loanPurpose : ko.observable().extend({
      required: true
    }),
    hasAccount: ko.observable().extend({
        required: true
    }),

    submit: function () {
      if (this.isValid()) {
        alert('Thank you.');
      } else {
          console.log(this.hasAccount());
        alert('Please check your submission.');
        this.errors.showAllMessages();
      }
    }

  });

  // Activate knockout.js


  ko.applyBindings(viewModelSlide1Definition);

  }); // End document ready

そしてhtml

<div id="step">
  <fieldset id="custom-step-1" class="step" title="Getting Started">
    <label>Purchase</label>
    <input type="radio" name="radioLoanPurpose"
    value="purchase" data-bind="value: loanPurpose" />
    <label>Refinance</label>
    <input type="radio" name="radioLoanPurpose"
    value="refinance" data-bind="value: loanPurpose" />
    <br />
    <label>Do you have an account</label> <span>Yes</span>

    <input type="radio" name="radioHaveAccount"
    value="true" data-bind="value: hasAccount" /> <span>No</span>

    <input type="radio" name="radioHaveAccount" value="false"
    data-bind="value: hasAccount" />
  </fieldset>
  <input type="submit" class="finish" data-bind="click:submit" />
</div>

そして私をそれに導いた問題

https://github.com/ericmbarnard/Knockout-Validation/issues/193

于 2013-02-01T15:58:08.233 に答える