Unable to edit custom options in configurable product (JS error)Custom Options in Product ListAssociate Simple Products with Custom Options to Configurable ProductCustom options for ProductCan't get custom options on product edit screenEdit custom options select box contentUnable to add custom optionsMagento 1.9 get product options value for only the checkedCustom Options Not Appearing On Product Frontend on Magento 1.9Magento2 How to Show Sepereatly Configurable Product attribute and Product Custom OptionsConfigurable products options value - Magento 2.2.7
What are the problems in teaching guitar via Skype?
How do Russian speakers idiomatically express the idea of "Ce n’est pas donné à tout le monde de ..." in French?
Is it possible to change original filename of an exe?
How to prevent bad sectors?
What caused the tendency for conservatives to not support climate change reform?
What is the difference between nullifying your vote and not going to vote at all?
Split polygon using another polygon in QGIS
Looking after a wayward brother in mother's will
What's the connection between "kicking a pigeon" and "how a bill becomes a law"?
Ticket sales for Queen at the Live Aid
Compact Mechanical Energy Source
Can a non-EU citizen travel within schengen zone freely without passport?
What is the most important source of natural gas? coal, oil or other?
Crossword gone overboard
File globbing pattern, !(*example), behaves differently in bash script than it does in bash shell
Question about exercise 11.5 in TeXbook
Different PCB color ( is it different material? )
Plot exactly N bounce of a ball
Is there an evolutionary advantage to having two heads?
What is the 中 in ダウンロード中?
How many chess players are over 2500 Elo?
Crossing US border with music files I'm legally allowed to possess
How can I find where certain bash function is defined?
Is floating in space similar to falling under gravity?
Unable to edit custom options in configurable product (JS error)
Custom Options in Product ListAssociate Simple Products with Custom Options to Configurable ProductCustom options for ProductCan't get custom options on product edit screenEdit custom options select box contentUnable to add custom optionsMagento 1.9 get product options value for only the checkedCustom Options Not Appearing On Product Frontend on Magento 1.9Magento2 How to Show Sepereatly Configurable Product attribute and Product Custom OptionsConfigurable products options value - Magento 2.2.7
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
When I try to edit a configurable product I get this error in console (after clicking the Custom options tab) :
knockout.js:3012 Uncaught TypeError: Unable to process binding "afterRender: function()return function(el)odFieldSet.optionDependent('initRowId',el,rowId,true) "
Message: Cannot read property 'click' of undefined
at $.<computed>.<computed>.initRowId (main.js:113)
at $.<computed>.<computed>.initRowId (jquery-ui-1.9.2.js:432)
at HTMLDivElement.<anonymous> (jquery-ui-1.9.2.js:527)
at Function.each (jquery.js:370)
at jQuery.fn.init.each (jquery.js:137)
at jQuery.fn.init.$.fn.<computed> [as optionDependent] (jquery-ui-1.9.2.js:517)
at UiClass.eval (eval at createBindingsStringEvaluator (knockout.js:2624), <anonymous>:3:95)
at init (after-render.js:20)
at knockout.js:2989
at Object.ignore (knockout.js:1249)
Main.js 133 is the var handlers = button.data('events')['click']; row here
if (!this.observedOptionDelButton[oId])
var button = el.closest('div.admin__collapsible-block-wrapper').find('button.action-delete');
button.bind('click', $.proxy(this.deleteOption, this, oId));
var handlers = button.data('events')['click'];
// take out the handler we just inserted from the end
var handler = handlers.pop();
// move it at the beginning
handlers.splice(0, 0, handler);
this.observedOptionDelButton[oId] = 1;
in initRowId method.
The tab opens but due to the error the DELETE button for rows (e.g. colours) is not working and I cannot add/remove the options.
I'm using version 2.2.7 and checking 2.2.8 changelogs I've found no related fix so for now I owuld prefer to not upgrade.
Any idea?
Thanks
custom-options backend knockoutjs configurable-product-options
add a comment |
When I try to edit a configurable product I get this error in console (after clicking the Custom options tab) :
knockout.js:3012 Uncaught TypeError: Unable to process binding "afterRender: function()return function(el)odFieldSet.optionDependent('initRowId',el,rowId,true) "
Message: Cannot read property 'click' of undefined
at $.<computed>.<computed>.initRowId (main.js:113)
at $.<computed>.<computed>.initRowId (jquery-ui-1.9.2.js:432)
at HTMLDivElement.<anonymous> (jquery-ui-1.9.2.js:527)
at Function.each (jquery.js:370)
at jQuery.fn.init.each (jquery.js:137)
at jQuery.fn.init.$.fn.<computed> [as optionDependent] (jquery-ui-1.9.2.js:517)
at UiClass.eval (eval at createBindingsStringEvaluator (knockout.js:2624), <anonymous>:3:95)
at init (after-render.js:20)
at knockout.js:2989
at Object.ignore (knockout.js:1249)
Main.js 133 is the var handlers = button.data('events')['click']; row here
if (!this.observedOptionDelButton[oId])
var button = el.closest('div.admin__collapsible-block-wrapper').find('button.action-delete');
button.bind('click', $.proxy(this.deleteOption, this, oId));
var handlers = button.data('events')['click'];
// take out the handler we just inserted from the end
var handler = handlers.pop();
// move it at the beginning
handlers.splice(0, 0, handler);
this.observedOptionDelButton[oId] = 1;
in initRowId method.
The tab opens but due to the error the DELETE button for rows (e.g. colours) is not working and I cannot add/remove the options.
I'm using version 2.2.7 and checking 2.2.8 changelogs I've found no related fix so for now I owuld prefer to not upgrade.
Any idea?
Thanks
custom-options backend knockoutjs configurable-product-options
add a comment |
When I try to edit a configurable product I get this error in console (after clicking the Custom options tab) :
knockout.js:3012 Uncaught TypeError: Unable to process binding "afterRender: function()return function(el)odFieldSet.optionDependent('initRowId',el,rowId,true) "
Message: Cannot read property 'click' of undefined
at $.<computed>.<computed>.initRowId (main.js:113)
at $.<computed>.<computed>.initRowId (jquery-ui-1.9.2.js:432)
at HTMLDivElement.<anonymous> (jquery-ui-1.9.2.js:527)
at Function.each (jquery.js:370)
at jQuery.fn.init.each (jquery.js:137)
at jQuery.fn.init.$.fn.<computed> [as optionDependent] (jquery-ui-1.9.2.js:517)
at UiClass.eval (eval at createBindingsStringEvaluator (knockout.js:2624), <anonymous>:3:95)
at init (after-render.js:20)
at knockout.js:2989
at Object.ignore (knockout.js:1249)
Main.js 133 is the var handlers = button.data('events')['click']; row here
if (!this.observedOptionDelButton[oId])
var button = el.closest('div.admin__collapsible-block-wrapper').find('button.action-delete');
button.bind('click', $.proxy(this.deleteOption, this, oId));
var handlers = button.data('events')['click'];
// take out the handler we just inserted from the end
var handler = handlers.pop();
// move it at the beginning
handlers.splice(0, 0, handler);
this.observedOptionDelButton[oId] = 1;
in initRowId method.
The tab opens but due to the error the DELETE button for rows (e.g. colours) is not working and I cannot add/remove the options.
I'm using version 2.2.7 and checking 2.2.8 changelogs I've found no related fix so for now I owuld prefer to not upgrade.
Any idea?
Thanks
custom-options backend knockoutjs configurable-product-options
When I try to edit a configurable product I get this error in console (after clicking the Custom options tab) :
knockout.js:3012 Uncaught TypeError: Unable to process binding "afterRender: function()return function(el)odFieldSet.optionDependent('initRowId',el,rowId,true) "
Message: Cannot read property 'click' of undefined
at $.<computed>.<computed>.initRowId (main.js:113)
at $.<computed>.<computed>.initRowId (jquery-ui-1.9.2.js:432)
at HTMLDivElement.<anonymous> (jquery-ui-1.9.2.js:527)
at Function.each (jquery.js:370)
at jQuery.fn.init.each (jquery.js:137)
at jQuery.fn.init.$.fn.<computed> [as optionDependent] (jquery-ui-1.9.2.js:517)
at UiClass.eval (eval at createBindingsStringEvaluator (knockout.js:2624), <anonymous>:3:95)
at init (after-render.js:20)
at knockout.js:2989
at Object.ignore (knockout.js:1249)
Main.js 133 is the var handlers = button.data('events')['click']; row here
if (!this.observedOptionDelButton[oId])
var button = el.closest('div.admin__collapsible-block-wrapper').find('button.action-delete');
button.bind('click', $.proxy(this.deleteOption, this, oId));
var handlers = button.data('events')['click'];
// take out the handler we just inserted from the end
var handler = handlers.pop();
// move it at the beginning
handlers.splice(0, 0, handler);
this.observedOptionDelButton[oId] = 1;
in initRowId method.
The tab opens but due to the error the DELETE button for rows (e.g. colours) is not working and I cannot add/remove the options.
I'm using version 2.2.7 and checking 2.2.8 changelogs I've found no related fix so for now I owuld prefer to not upgrade.
Any idea?
Thanks
custom-options backend knockoutjs configurable-product-options
custom-options backend knockoutjs configurable-product-options
asked May 22 at 10:43
SimoneBSimoneB
1013
1013
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%2f275652%2funable-to-edit-custom-options-in-configurable-product-js-error%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%2f275652%2funable-to-edit-custom-options-in-configurable-product-js-error%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