How to debug in ko template in magento 2?












5














Here is the code in vendormagentomodule-checkoutviewfrontendwebtemplateshipping-addresscustom-method-item-template.html



<tbody collapsible="as: '$collapsible_' + method.method_code">
<tr class="row"
click="element.selectShippingMethod">
<td class="col col-method">
<input type="radio"
class="radio"
ifnot="method.error_message"
ko-checked="element.isSelected"
ko-value="method.carrier_code + '_' + method.method_code"
attr="'aria-labelledby': 'label_method_' + method.method_code + '_' + method.carrier_code + ' ' + 'label_carrier_' + method.method_code + '_' + method.carrier_code,
'checked': element.rates().length == 1 || element.isSelected" />
</td>
<td class="col col-price">
<each args="element.getRegion('price')" render="" />
</td>
<td class="col col-method"
attr="'id': 'label_method_' + method.method_code + '_' + method.carrier_code"
text="method.method_title" style="background-color:yellow" />
<td class="col col-carrier"
attr="'id': 'label_carrier_' + method.method_code + '_' + method.carrier_code"
text="method.carrier_title" />
<!-- Column with collapsible trigger -->
<td class="col">
<a toggleCollapsible="'$collapsible_' + method.method_code">
<span data-bind="i18n: 'Info'"></span>
</a>
</td>
</tr>
<!-- Row for shipping method description -->
<tr class="row" visible="$context['$collapsible_' + method.method_code].opened">
<td class="col" colspan="5" i18n="'Some description.'">12312</td>
</tr>

<tr class="row row-error"
if="method.error_message">
<td class="col col-error" colspan="4">
<div role="alert" class="message error">
<div text="method.error_message"></div>
</div>
<span class="no-display">
<input type="radio"
attr="'value' : method.method_code, 'id': 's_method_' + method.method_code" />
</span>
</td>
</tr>
</tbody>


I want to show method.method_code either console.log or alert, how can i do that?










share|improve this question



























    5














    Here is the code in vendormagentomodule-checkoutviewfrontendwebtemplateshipping-addresscustom-method-item-template.html



    <tbody collapsible="as: '$collapsible_' + method.method_code">
    <tr class="row"
    click="element.selectShippingMethod">
    <td class="col col-method">
    <input type="radio"
    class="radio"
    ifnot="method.error_message"
    ko-checked="element.isSelected"
    ko-value="method.carrier_code + '_' + method.method_code"
    attr="'aria-labelledby': 'label_method_' + method.method_code + '_' + method.carrier_code + ' ' + 'label_carrier_' + method.method_code + '_' + method.carrier_code,
    'checked': element.rates().length == 1 || element.isSelected" />
    </td>
    <td class="col col-price">
    <each args="element.getRegion('price')" render="" />
    </td>
    <td class="col col-method"
    attr="'id': 'label_method_' + method.method_code + '_' + method.carrier_code"
    text="method.method_title" style="background-color:yellow" />
    <td class="col col-carrier"
    attr="'id': 'label_carrier_' + method.method_code + '_' + method.carrier_code"
    text="method.carrier_title" />
    <!-- Column with collapsible trigger -->
    <td class="col">
    <a toggleCollapsible="'$collapsible_' + method.method_code">
    <span data-bind="i18n: 'Info'"></span>
    </a>
    </td>
    </tr>
    <!-- Row for shipping method description -->
    <tr class="row" visible="$context['$collapsible_' + method.method_code].opened">
    <td class="col" colspan="5" i18n="'Some description.'">12312</td>
    </tr>

    <tr class="row row-error"
    if="method.error_message">
    <td class="col col-error" colspan="4">
    <div role="alert" class="message error">
    <div text="method.error_message"></div>
    </div>
    <span class="no-display">
    <input type="radio"
    attr="'value' : method.method_code, 'id': 's_method_' + method.method_code" />
    </span>
    </td>
    </tr>
    </tbody>


    I want to show method.method_code either console.log or alert, how can i do that?










    share|improve this question

























      5












      5








      5


      4





      Here is the code in vendormagentomodule-checkoutviewfrontendwebtemplateshipping-addresscustom-method-item-template.html



      <tbody collapsible="as: '$collapsible_' + method.method_code">
      <tr class="row"
      click="element.selectShippingMethod">
      <td class="col col-method">
      <input type="radio"
      class="radio"
      ifnot="method.error_message"
      ko-checked="element.isSelected"
      ko-value="method.carrier_code + '_' + method.method_code"
      attr="'aria-labelledby': 'label_method_' + method.method_code + '_' + method.carrier_code + ' ' + 'label_carrier_' + method.method_code + '_' + method.carrier_code,
      'checked': element.rates().length == 1 || element.isSelected" />
      </td>
      <td class="col col-price">
      <each args="element.getRegion('price')" render="" />
      </td>
      <td class="col col-method"
      attr="'id': 'label_method_' + method.method_code + '_' + method.carrier_code"
      text="method.method_title" style="background-color:yellow" />
      <td class="col col-carrier"
      attr="'id': 'label_carrier_' + method.method_code + '_' + method.carrier_code"
      text="method.carrier_title" />
      <!-- Column with collapsible trigger -->
      <td class="col">
      <a toggleCollapsible="'$collapsible_' + method.method_code">
      <span data-bind="i18n: 'Info'"></span>
      </a>
      </td>
      </tr>
      <!-- Row for shipping method description -->
      <tr class="row" visible="$context['$collapsible_' + method.method_code].opened">
      <td class="col" colspan="5" i18n="'Some description.'">12312</td>
      </tr>

      <tr class="row row-error"
      if="method.error_message">
      <td class="col col-error" colspan="4">
      <div role="alert" class="message error">
      <div text="method.error_message"></div>
      </div>
      <span class="no-display">
      <input type="radio"
      attr="'value' : method.method_code, 'id': 's_method_' + method.method_code" />
      </span>
      </td>
      </tr>
      </tbody>


      I want to show method.method_code either console.log or alert, how can i do that?










      share|improve this question













      Here is the code in vendormagentomodule-checkoutviewfrontendwebtemplateshipping-addresscustom-method-item-template.html



      <tbody collapsible="as: '$collapsible_' + method.method_code">
      <tr class="row"
      click="element.selectShippingMethod">
      <td class="col col-method">
      <input type="radio"
      class="radio"
      ifnot="method.error_message"
      ko-checked="element.isSelected"
      ko-value="method.carrier_code + '_' + method.method_code"
      attr="'aria-labelledby': 'label_method_' + method.method_code + '_' + method.carrier_code + ' ' + 'label_carrier_' + method.method_code + '_' + method.carrier_code,
      'checked': element.rates().length == 1 || element.isSelected" />
      </td>
      <td class="col col-price">
      <each args="element.getRegion('price')" render="" />
      </td>
      <td class="col col-method"
      attr="'id': 'label_method_' + method.method_code + '_' + method.carrier_code"
      text="method.method_title" style="background-color:yellow" />
      <td class="col col-carrier"
      attr="'id': 'label_carrier_' + method.method_code + '_' + method.carrier_code"
      text="method.carrier_title" />
      <!-- Column with collapsible trigger -->
      <td class="col">
      <a toggleCollapsible="'$collapsible_' + method.method_code">
      <span data-bind="i18n: 'Info'"></span>
      </a>
      </td>
      </tr>
      <!-- Row for shipping method description -->
      <tr class="row" visible="$context['$collapsible_' + method.method_code].opened">
      <td class="col" colspan="5" i18n="'Some description.'">12312</td>
      </tr>

      <tr class="row row-error"
      if="method.error_message">
      <td class="col col-error" colspan="4">
      <div role="alert" class="message error">
      <div text="method.error_message"></div>
      </div>
      <span class="no-display">
      <input type="radio"
      attr="'value' : method.method_code, 'id': 's_method_' + method.method_code" />
      </span>
      </td>
      </tr>
      </tbody>


      I want to show method.method_code either console.log or alert, how can i do that?







      magento2 template knockoutjs






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Dec 5 at 5:57









      hkguile

      95532753




      95532753






















          2 Answers
          2






          active

          oldest

          votes


















          4














          Debugging



          <div data-bind="text: ko.computed(function() { debugger; })"></div>


          Print Data



          <div data-bind="text: ko.toJSON(method.method_code)"></div>





          share|improve this answer





























            2














            There is one another great tool available for debugging knockout js data in chrome browser.




            Knockoutjs context debugger




            https://chrome.google.com/webstore/detail/knockoutjs-context-debugg/oddcpmchholgcjgjdnfjmildmlielhof?hl=en



            Add Knockoutjs context debugger in chrome browser. You can see a new tab added Knockout context at the right panel in Elements tab where you can check knockout data of selected element.



            Check Screenshot:



            enter image description here






            share|improve this answer

















            • 1




              It's quite helpful.
              – Khoa TruongDinh
              Dec 6 at 1:32











            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%2f252457%2fhow-to-debug-in-ko-template-in-magento-2%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            4














            Debugging



            <div data-bind="text: ko.computed(function() { debugger; })"></div>


            Print Data



            <div data-bind="text: ko.toJSON(method.method_code)"></div>





            share|improve this answer


























              4














              Debugging



              <div data-bind="text: ko.computed(function() { debugger; })"></div>


              Print Data



              <div data-bind="text: ko.toJSON(method.method_code)"></div>





              share|improve this answer
























                4












                4








                4






                Debugging



                <div data-bind="text: ko.computed(function() { debugger; })"></div>


                Print Data



                <div data-bind="text: ko.toJSON(method.method_code)"></div>





                share|improve this answer












                Debugging



                <div data-bind="text: ko.computed(function() { debugger; })"></div>


                Print Data



                <div data-bind="text: ko.toJSON(method.method_code)"></div>






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Dec 5 at 7:07









                Khoa TruongDinh

                20.8k63882




                20.8k63882

























                    2














                    There is one another great tool available for debugging knockout js data in chrome browser.




                    Knockoutjs context debugger




                    https://chrome.google.com/webstore/detail/knockoutjs-context-debugg/oddcpmchholgcjgjdnfjmildmlielhof?hl=en



                    Add Knockoutjs context debugger in chrome browser. You can see a new tab added Knockout context at the right panel in Elements tab where you can check knockout data of selected element.



                    Check Screenshot:



                    enter image description here






                    share|improve this answer

















                    • 1




                      It's quite helpful.
                      – Khoa TruongDinh
                      Dec 6 at 1:32
















                    2














                    There is one another great tool available for debugging knockout js data in chrome browser.




                    Knockoutjs context debugger




                    https://chrome.google.com/webstore/detail/knockoutjs-context-debugg/oddcpmchholgcjgjdnfjmildmlielhof?hl=en



                    Add Knockoutjs context debugger in chrome browser. You can see a new tab added Knockout context at the right panel in Elements tab where you can check knockout data of selected element.



                    Check Screenshot:



                    enter image description here






                    share|improve this answer

















                    • 1




                      It's quite helpful.
                      – Khoa TruongDinh
                      Dec 6 at 1:32














                    2












                    2








                    2






                    There is one another great tool available for debugging knockout js data in chrome browser.




                    Knockoutjs context debugger




                    https://chrome.google.com/webstore/detail/knockoutjs-context-debugg/oddcpmchholgcjgjdnfjmildmlielhof?hl=en



                    Add Knockoutjs context debugger in chrome browser. You can see a new tab added Knockout context at the right panel in Elements tab where you can check knockout data of selected element.



                    Check Screenshot:



                    enter image description here






                    share|improve this answer












                    There is one another great tool available for debugging knockout js data in chrome browser.




                    Knockoutjs context debugger




                    https://chrome.google.com/webstore/detail/knockoutjs-context-debugg/oddcpmchholgcjgjdnfjmildmlielhof?hl=en



                    Add Knockoutjs context debugger in chrome browser. You can see a new tab added Knockout context at the right panel in Elements tab where you can check knockout data of selected element.



                    Check Screenshot:



                    enter image description here







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Dec 5 at 9:13









                    Prince Patel

                    13.1k54674




                    13.1k54674








                    • 1




                      It's quite helpful.
                      – Khoa TruongDinh
                      Dec 6 at 1:32














                    • 1




                      It's quite helpful.
                      – Khoa TruongDinh
                      Dec 6 at 1:32








                    1




                    1




                    It's quite helpful.
                    – Khoa TruongDinh
                    Dec 6 at 1:32




                    It's quite helpful.
                    – Khoa TruongDinh
                    Dec 6 at 1:32


















                    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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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%2f252457%2fhow-to-debug-in-ko-template-in-magento-2%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

                    Plaza Victoria

                    In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

                    How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...