Magento 2: Knockout js dynamic content binding issue












0















I have created a custom form in checkout page. Everything works fine except one ajax response binding



Here is my code



template.html



 <form id="cust-checkout-form" class="form" data-bind="attr: {'data-hasrequired': $t('* Required Fields')}">
<fieldset class="fieldset">
<div class="step-title" data-role="title" data-bind="i18n: 'Post Selection'">Post Selection</div>
<p>&nbsp;</p>

<div style="padding-top: 10px" id="selected_post"></div>
<div>Find Post within&nbsp;&nbsp;
<select name="distance" id="distance" style="width: 8%;" data-bind="event: { change: getDealers }">
<option value="5">5</option>
<option value="10">10</option>
<option value="25">25</option>
</select>&nbsp;&nbsp;miles. Choose below
</div>
<input type="hidden" name="licence" id="licence" value="" />

<div id="dealer-div">
<ul class="post-div" id="post-div" data-bind="foreach: dealers">
<li class="post-item" data-bind="click: function(data,event){$parent.setValue(data,event);},attr: {'class': postcls}">
<div class="post-span">
<label data-bind="html: name" /><br/>
<label data-bind="html: address" /><br/>
</div>
</li>
</ul>
</div>
</fieldset>
</form>


knockout js



    define([
'Magento_Ui/js/form/form',
'ko'
], function(Component,ko) {
'use strict';

return Component.extend({

initialize: function () {
this._super();
this.dealers = ko.observableArray();
this.dealers = window.checkoutConfig.dealers;
return this;
},
setValue: function(data,event) {console.log('hi');
var licenceVal = data.licence;
jQuery("#post-licence").val(licenceVal);
var content = data.name+", "+data.address;
jQuery("#selected_post").html("<b>"+content+"</b>");

},
getDealers: function () {
var dist = jQuery("#distance").val();
jQuery.ajax({
showLoader: true,
url: window.checkoutConfig.ajaxUrl,
data: {'dist':dist},
type: "POST",
}).done(function (data) {
this.dealers = data;
return this;
});
},

});
});


The content is not changing while selecting the dropdown.



If I pass the response as html, then the setValue function is not working.
Please help me.









share





























    0















    I have created a custom form in checkout page. Everything works fine except one ajax response binding



    Here is my code



    template.html



     <form id="cust-checkout-form" class="form" data-bind="attr: {'data-hasrequired': $t('* Required Fields')}">
    <fieldset class="fieldset">
    <div class="step-title" data-role="title" data-bind="i18n: 'Post Selection'">Post Selection</div>
    <p>&nbsp;</p>

    <div style="padding-top: 10px" id="selected_post"></div>
    <div>Find Post within&nbsp;&nbsp;
    <select name="distance" id="distance" style="width: 8%;" data-bind="event: { change: getDealers }">
    <option value="5">5</option>
    <option value="10">10</option>
    <option value="25">25</option>
    </select>&nbsp;&nbsp;miles. Choose below
    </div>
    <input type="hidden" name="licence" id="licence" value="" />

    <div id="dealer-div">
    <ul class="post-div" id="post-div" data-bind="foreach: dealers">
    <li class="post-item" data-bind="click: function(data,event){$parent.setValue(data,event);},attr: {'class': postcls}">
    <div class="post-span">
    <label data-bind="html: name" /><br/>
    <label data-bind="html: address" /><br/>
    </div>
    </li>
    </ul>
    </div>
    </fieldset>
    </form>


    knockout js



        define([
    'Magento_Ui/js/form/form',
    'ko'
    ], function(Component,ko) {
    'use strict';

    return Component.extend({

    initialize: function () {
    this._super();
    this.dealers = ko.observableArray();
    this.dealers = window.checkoutConfig.dealers;
    return this;
    },
    setValue: function(data,event) {console.log('hi');
    var licenceVal = data.licence;
    jQuery("#post-licence").val(licenceVal);
    var content = data.name+", "+data.address;
    jQuery("#selected_post").html("<b>"+content+"</b>");

    },
    getDealers: function () {
    var dist = jQuery("#distance").val();
    jQuery.ajax({
    showLoader: true,
    url: window.checkoutConfig.ajaxUrl,
    data: {'dist':dist},
    type: "POST",
    }).done(function (data) {
    this.dealers = data;
    return this;
    });
    },

    });
    });


    The content is not changing while selecting the dropdown.



    If I pass the response as html, then the setValue function is not working.
    Please help me.









    share



























      0












      0








      0








      I have created a custom form in checkout page. Everything works fine except one ajax response binding



      Here is my code



      template.html



       <form id="cust-checkout-form" class="form" data-bind="attr: {'data-hasrequired': $t('* Required Fields')}">
      <fieldset class="fieldset">
      <div class="step-title" data-role="title" data-bind="i18n: 'Post Selection'">Post Selection</div>
      <p>&nbsp;</p>

      <div style="padding-top: 10px" id="selected_post"></div>
      <div>Find Post within&nbsp;&nbsp;
      <select name="distance" id="distance" style="width: 8%;" data-bind="event: { change: getDealers }">
      <option value="5">5</option>
      <option value="10">10</option>
      <option value="25">25</option>
      </select>&nbsp;&nbsp;miles. Choose below
      </div>
      <input type="hidden" name="licence" id="licence" value="" />

      <div id="dealer-div">
      <ul class="post-div" id="post-div" data-bind="foreach: dealers">
      <li class="post-item" data-bind="click: function(data,event){$parent.setValue(data,event);},attr: {'class': postcls}">
      <div class="post-span">
      <label data-bind="html: name" /><br/>
      <label data-bind="html: address" /><br/>
      </div>
      </li>
      </ul>
      </div>
      </fieldset>
      </form>


      knockout js



          define([
      'Magento_Ui/js/form/form',
      'ko'
      ], function(Component,ko) {
      'use strict';

      return Component.extend({

      initialize: function () {
      this._super();
      this.dealers = ko.observableArray();
      this.dealers = window.checkoutConfig.dealers;
      return this;
      },
      setValue: function(data,event) {console.log('hi');
      var licenceVal = data.licence;
      jQuery("#post-licence").val(licenceVal);
      var content = data.name+", "+data.address;
      jQuery("#selected_post").html("<b>"+content+"</b>");

      },
      getDealers: function () {
      var dist = jQuery("#distance").val();
      jQuery.ajax({
      showLoader: true,
      url: window.checkoutConfig.ajaxUrl,
      data: {'dist':dist},
      type: "POST",
      }).done(function (data) {
      this.dealers = data;
      return this;
      });
      },

      });
      });


      The content is not changing while selecting the dropdown.



      If I pass the response as html, then the setValue function is not working.
      Please help me.









      share
















      I have created a custom form in checkout page. Everything works fine except one ajax response binding



      Here is my code



      template.html



       <form id="cust-checkout-form" class="form" data-bind="attr: {'data-hasrequired': $t('* Required Fields')}">
      <fieldset class="fieldset">
      <div class="step-title" data-role="title" data-bind="i18n: 'Post Selection'">Post Selection</div>
      <p>&nbsp;</p>

      <div style="padding-top: 10px" id="selected_post"></div>
      <div>Find Post within&nbsp;&nbsp;
      <select name="distance" id="distance" style="width: 8%;" data-bind="event: { change: getDealers }">
      <option value="5">5</option>
      <option value="10">10</option>
      <option value="25">25</option>
      </select>&nbsp;&nbsp;miles. Choose below
      </div>
      <input type="hidden" name="licence" id="licence" value="" />

      <div id="dealer-div">
      <ul class="post-div" id="post-div" data-bind="foreach: dealers">
      <li class="post-item" data-bind="click: function(data,event){$parent.setValue(data,event);},attr: {'class': postcls}">
      <div class="post-span">
      <label data-bind="html: name" /><br/>
      <label data-bind="html: address" /><br/>
      </div>
      </li>
      </ul>
      </div>
      </fieldset>
      </form>


      knockout js



          define([
      'Magento_Ui/js/form/form',
      'ko'
      ], function(Component,ko) {
      'use strict';

      return Component.extend({

      initialize: function () {
      this._super();
      this.dealers = ko.observableArray();
      this.dealers = window.checkoutConfig.dealers;
      return this;
      },
      setValue: function(data,event) {console.log('hi');
      var licenceVal = data.licence;
      jQuery("#post-licence").val(licenceVal);
      var content = data.name+", "+data.address;
      jQuery("#selected_post").html("<b>"+content+"</b>");

      },
      getDealers: function () {
      var dist = jQuery("#distance").val();
      jQuery.ajax({
      showLoader: true,
      url: window.checkoutConfig.ajaxUrl,
      data: {'dist':dist},
      type: "POST",
      }).done(function (data) {
      this.dealers = data;
      return this;
      });
      },

      });
      });


      The content is not changing while selecting the dropdown.



      If I pass the response as html, then the setValue function is not working.
      Please help me.







      checkout knockoutjs magento2.3 knockout





      share














      share












      share



      share








      edited 2 mins ago









      Piyush

      4,78972053




      4,78972053










      asked 8 mins ago









      Jancy AbrahamJancy Abraham

      1,02411537




      1,02411537






















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "479"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f260613%2fmagento-2-knockout-js-dynamic-content-binding-issue%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f260613%2fmagento-2-knockout-js-dynamic-content-binding-issue%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          What other Star Trek series did the main TNG cast show up in?

          Berlina muro

          Berlina aerponto