Magento 2: Knockout js dynamic content binding issue
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> </p>
<div style="padding-top: 10px" id="selected_post"></div>
<div>Find Post within
<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> 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
add a comment |
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> </p>
<div style="padding-top: 10px" id="selected_post"></div>
<div>Find Post within
<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> 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
add a comment |
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> </p>
<div style="padding-top: 10px" id="selected_post"></div>
<div>Find Post within
<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> 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
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> </p>
<div style="padding-top: 10px" id="selected_post"></div>
<div>Find Post within
<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> 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
checkout knockoutjs magento2.3 knockout
edited 2 mins ago
Piyush
4,78972053
4,78972053
asked 8 mins ago
Jancy AbrahamJancy Abraham
1,02411537
1,02411537
add a comment |
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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