I would like to put one text field on "Requests a ...
# suitecommerce
t
I would like to put one text field on "Requests a Quote" page on SuiteCommerce. In that case, what param value I have to use in container.getComponent() function? In the Checkout page, I used below code and it was working.
Copy code
var checkout = container.getComponent('Checkout');
checkout.addChildView('Company.Contact', function() { 
    return new ContactInfoView({ container: container });
});
s
If it's literally just a static text field (eg
<p>Please call <tel:5551234567|555-123-4567> for more info</p>
) then I would just use the Site Management Tools or jQuery.
Otherwise, you will need to use the Layout component because the Checkout component is not available in that context.