Magento 2: How To Disable Button On Form Submit?Magento2 - Add new field to new step in magento 2!Frontend form key is being overwrittenWhat is the proper format for checkbox validation in Magento 2?Magento 2 Add new field to Magento_User admin formMagento 2: How to submit form on checkbox click?Popup form validation in magento2How to make file field required pass when submit even it existed valuehow to add category using factory method not object managerMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?How to create custom form in Magento 2.2.3
Why is there a large performance impact when looping over an array over 240 elements?
Simplification of numbers
First amendment and employment: Can a police department terminate an officer for speech?
What should I call bands of armed men in the Middle Ages?
Is it okay for a ticket seller in the USA to refuse to give you your change, keep it for themselves and claim it's a tip?
Heating Margarine in Pan = loss of calories?
Do I have to cite common CS algorithms?
Why isn’t SHA-3 in wider use?
How big would my character's wings realistically be?
What does the phrase "pull off sick wheelies and flips" mean here?
Why command hierarchy, if the chain of command is standing next to each other?
Safest way to store environment variable value in a file
Why are Gatwick's runways too close together?
What are these funnel-looking green things in my yard?
What is this "Table of astronomy" about?
Loading military units into ships optimally, using backtracking
Heat equation: Squiggly lines
How to remove ambiguity: "... lives in the city of H, the capital of the province of NS, WHERE the unemployment rate is ..."?
How can Radagast come across Gandalf and Thorin's company?
These were just lying around
When were the tantalum capacitors first used in computing?
How would timezones work on a planet 100 times the size of our Earth
How to assign many blockers at the same time?
Creating multi-attribute primary key in table in ArcGIS Desktop
Magento 2: How To Disable Button On Form Submit?
Magento2 - Add new field to new step in magento 2!Frontend form key is being overwrittenWhat is the proper format for checkbox validation in Magento 2?Magento 2 Add new field to Magento_User admin formMagento 2: How to submit form on checkbox click?Popup form validation in magento2How to make file field required pass when submit even it existed valuehow to add category using factory method not object managerMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?How to create custom form in Magento 2.2.3
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm trying to disable button after submitting form, but i'm facing some issue, when i submit black field it validate the form and disable the button... but i want to disable it on form submit successfully....go through many answers but could not succeed.
Here is my phtml file:
<form class="form quote"
action="<?php /* @escapeNotVerified */ echo $block->getUrl("partsquote/index/QuotePost", array("_secure" => true));?>"
id="drawpad-form"
method="post"
data-hasrequired="<?php /* @escapeNotVerified */ echo __('* Required Fields') ?>"
data-mage-init='"validation":' enctype="multipart/form-data">
<?php echo $block->getBlockHtml('formkey')?>
<fieldset class="fieldset">
<!--legend class="legend"><span><?php /* @escapeNotVerified */ echo __('Quote Request') ?></span></legend><br /-->
<div class="fields">
<div class="field name required">
<label class="label" for="name"><span><?php /* @escapeNotVerified */ echo __('Your Name') ?></span></label>
<div class="control">
<input name="name" id="quote_name" title="<?php /* @escapeNotVerified */ echo __('Your Name') ?>" placeholder="<?php /* @escapeNotVerified */ echo __('Your Name') ?>" value="" class="input-text" type="text" data-validate="required:true"/>
</div>
</div>
<div class="field email required">
<label class="label" for="email"><span><?php /* @escapeNotVerified */ echo __('Your Email') ?></span></label>
<div class="control">
<input name="email" id="quote_email" title="<?php /* @escapeNotVerified */ echo __('Your Email') ?>" placeholder="<?php /* @escapeNotVerified */ echo __('Your Email') ?>" value="" class="input-text" type="email" data-validate="required:true, 'validate-email':true"/>
</div>
</div>
</div>
<div class="field">
<label class="label" for="state"><span><?php /* @escapeNotVerified */ echo __('Your State / Province') ?></span></label>
<div class="control">
<select name="state" id="quote_state" class="required-entry validate-state" title="Your State / Province" aria-required="true">
<option value="" selected="selected">Please Select State / Province</option>
<?php foreach($block->getRegionCollection() as $region): ?>
<option value="<?php echo $region->getName(); ?>"><?php echo $region->getName(); ?></option>
<?php endforeach; ?>
</select>
</div>
</div>
<div class="fields">
<div class="field phone required">
<label class="label" for="phone"><span><?php /* @escapeNotVerified */ echo __('Your Phone Number') ?></span></label>
<div class="control">
<input name="phone" id="quote_phone" title="<?php /* @escapeNotVerified */ echo __('Your Phone Number') ?>" value="" placeholder="<?php /* @escapeNotVerified */ echo __('Your Phone Number') ?>" class="input-text" type="number" data-validate="required:true"/>
</div>
</div>
<div class="field product required">
<label class="label" for="product"><span><?php /* @escapeNotVerified */ echo __('Product Voltage/Wattage') ?></span></label>
<div class="control">
<input name="product" id="quote_product" title="<?php /* @escapeNotVerified */ echo __('Product Voltage/Wattage') ?>" placeholder="<?php /* @escapeNotVerified */ echo __('Product Voltage/Wattage') ?>" value="" class="input-text" type="text"/>
</div>
</div>
</div>
<div class="field message required">
<label class="label" for="message"><span><?php /* @escapeNotVerified */ echo __('Your Message') ?></span></label>
<div class="control">
<textarea name="message" id="quote_message" title="<?php /* @escapeNotVerified */ echo __('Your Message') ?>" class="input-text" cols="5" rows="3" data-validate="required:true" placeholder="<?php /* @escapeNotVerified */ echo __('Your Message') ?>"></textarea>
</div>
</div>
</fieldset>
<div class="actions-toolbar">
<div class="primary">
<input type="hidden" name="image" id="quote_image" value="" />
<input type="hidden" name="productName" id="productName" value="<?php echo $productName; ?>" />
<button type="submit" id="submit" title="<?php /* @escapeNotVerified */ echo __('Submit') ?>" class="action submit primary">
<span><?php /* @escapeNotVerified */ echo __('Submit') ?></span>
</button>
</div>
</div>
</form>
<script>
require(['jquery'],function($)
$(document).ready(function()
$('#drawpad-form').submit(function()
$('#submit').click(function(e)
this.disabled = true;
);
);
);
);
</script>
magento2 javascript jquery form-validation submit-form
add a comment |
I'm trying to disable button after submitting form, but i'm facing some issue, when i submit black field it validate the form and disable the button... but i want to disable it on form submit successfully....go through many answers but could not succeed.
Here is my phtml file:
<form class="form quote"
action="<?php /* @escapeNotVerified */ echo $block->getUrl("partsquote/index/QuotePost", array("_secure" => true));?>"
id="drawpad-form"
method="post"
data-hasrequired="<?php /* @escapeNotVerified */ echo __('* Required Fields') ?>"
data-mage-init='"validation":' enctype="multipart/form-data">
<?php echo $block->getBlockHtml('formkey')?>
<fieldset class="fieldset">
<!--legend class="legend"><span><?php /* @escapeNotVerified */ echo __('Quote Request') ?></span></legend><br /-->
<div class="fields">
<div class="field name required">
<label class="label" for="name"><span><?php /* @escapeNotVerified */ echo __('Your Name') ?></span></label>
<div class="control">
<input name="name" id="quote_name" title="<?php /* @escapeNotVerified */ echo __('Your Name') ?>" placeholder="<?php /* @escapeNotVerified */ echo __('Your Name') ?>" value="" class="input-text" type="text" data-validate="required:true"/>
</div>
</div>
<div class="field email required">
<label class="label" for="email"><span><?php /* @escapeNotVerified */ echo __('Your Email') ?></span></label>
<div class="control">
<input name="email" id="quote_email" title="<?php /* @escapeNotVerified */ echo __('Your Email') ?>" placeholder="<?php /* @escapeNotVerified */ echo __('Your Email') ?>" value="" class="input-text" type="email" data-validate="required:true, 'validate-email':true"/>
</div>
</div>
</div>
<div class="field">
<label class="label" for="state"><span><?php /* @escapeNotVerified */ echo __('Your State / Province') ?></span></label>
<div class="control">
<select name="state" id="quote_state" class="required-entry validate-state" title="Your State / Province" aria-required="true">
<option value="" selected="selected">Please Select State / Province</option>
<?php foreach($block->getRegionCollection() as $region): ?>
<option value="<?php echo $region->getName(); ?>"><?php echo $region->getName(); ?></option>
<?php endforeach; ?>
</select>
</div>
</div>
<div class="fields">
<div class="field phone required">
<label class="label" for="phone"><span><?php /* @escapeNotVerified */ echo __('Your Phone Number') ?></span></label>
<div class="control">
<input name="phone" id="quote_phone" title="<?php /* @escapeNotVerified */ echo __('Your Phone Number') ?>" value="" placeholder="<?php /* @escapeNotVerified */ echo __('Your Phone Number') ?>" class="input-text" type="number" data-validate="required:true"/>
</div>
</div>
<div class="field product required">
<label class="label" for="product"><span><?php /* @escapeNotVerified */ echo __('Product Voltage/Wattage') ?></span></label>
<div class="control">
<input name="product" id="quote_product" title="<?php /* @escapeNotVerified */ echo __('Product Voltage/Wattage') ?>" placeholder="<?php /* @escapeNotVerified */ echo __('Product Voltage/Wattage') ?>" value="" class="input-text" type="text"/>
</div>
</div>
</div>
<div class="field message required">
<label class="label" for="message"><span><?php /* @escapeNotVerified */ echo __('Your Message') ?></span></label>
<div class="control">
<textarea name="message" id="quote_message" title="<?php /* @escapeNotVerified */ echo __('Your Message') ?>" class="input-text" cols="5" rows="3" data-validate="required:true" placeholder="<?php /* @escapeNotVerified */ echo __('Your Message') ?>"></textarea>
</div>
</div>
</fieldset>
<div class="actions-toolbar">
<div class="primary">
<input type="hidden" name="image" id="quote_image" value="" />
<input type="hidden" name="productName" id="productName" value="<?php echo $productName; ?>" />
<button type="submit" id="submit" title="<?php /* @escapeNotVerified */ echo __('Submit') ?>" class="action submit primary">
<span><?php /* @escapeNotVerified */ echo __('Submit') ?></span>
</button>
</div>
</div>
</form>
<script>
require(['jquery'],function($)
$(document).ready(function()
$('#drawpad-form').submit(function()
$('#submit').click(function(e)
this.disabled = true;
);
);
);
);
</script>
magento2 javascript jquery form-validation submit-form
add a comment |
I'm trying to disable button after submitting form, but i'm facing some issue, when i submit black field it validate the form and disable the button... but i want to disable it on form submit successfully....go through many answers but could not succeed.
Here is my phtml file:
<form class="form quote"
action="<?php /* @escapeNotVerified */ echo $block->getUrl("partsquote/index/QuotePost", array("_secure" => true));?>"
id="drawpad-form"
method="post"
data-hasrequired="<?php /* @escapeNotVerified */ echo __('* Required Fields') ?>"
data-mage-init='"validation":' enctype="multipart/form-data">
<?php echo $block->getBlockHtml('formkey')?>
<fieldset class="fieldset">
<!--legend class="legend"><span><?php /* @escapeNotVerified */ echo __('Quote Request') ?></span></legend><br /-->
<div class="fields">
<div class="field name required">
<label class="label" for="name"><span><?php /* @escapeNotVerified */ echo __('Your Name') ?></span></label>
<div class="control">
<input name="name" id="quote_name" title="<?php /* @escapeNotVerified */ echo __('Your Name') ?>" placeholder="<?php /* @escapeNotVerified */ echo __('Your Name') ?>" value="" class="input-text" type="text" data-validate="required:true"/>
</div>
</div>
<div class="field email required">
<label class="label" for="email"><span><?php /* @escapeNotVerified */ echo __('Your Email') ?></span></label>
<div class="control">
<input name="email" id="quote_email" title="<?php /* @escapeNotVerified */ echo __('Your Email') ?>" placeholder="<?php /* @escapeNotVerified */ echo __('Your Email') ?>" value="" class="input-text" type="email" data-validate="required:true, 'validate-email':true"/>
</div>
</div>
</div>
<div class="field">
<label class="label" for="state"><span><?php /* @escapeNotVerified */ echo __('Your State / Province') ?></span></label>
<div class="control">
<select name="state" id="quote_state" class="required-entry validate-state" title="Your State / Province" aria-required="true">
<option value="" selected="selected">Please Select State / Province</option>
<?php foreach($block->getRegionCollection() as $region): ?>
<option value="<?php echo $region->getName(); ?>"><?php echo $region->getName(); ?></option>
<?php endforeach; ?>
</select>
</div>
</div>
<div class="fields">
<div class="field phone required">
<label class="label" for="phone"><span><?php /* @escapeNotVerified */ echo __('Your Phone Number') ?></span></label>
<div class="control">
<input name="phone" id="quote_phone" title="<?php /* @escapeNotVerified */ echo __('Your Phone Number') ?>" value="" placeholder="<?php /* @escapeNotVerified */ echo __('Your Phone Number') ?>" class="input-text" type="number" data-validate="required:true"/>
</div>
</div>
<div class="field product required">
<label class="label" for="product"><span><?php /* @escapeNotVerified */ echo __('Product Voltage/Wattage') ?></span></label>
<div class="control">
<input name="product" id="quote_product" title="<?php /* @escapeNotVerified */ echo __('Product Voltage/Wattage') ?>" placeholder="<?php /* @escapeNotVerified */ echo __('Product Voltage/Wattage') ?>" value="" class="input-text" type="text"/>
</div>
</div>
</div>
<div class="field message required">
<label class="label" for="message"><span><?php /* @escapeNotVerified */ echo __('Your Message') ?></span></label>
<div class="control">
<textarea name="message" id="quote_message" title="<?php /* @escapeNotVerified */ echo __('Your Message') ?>" class="input-text" cols="5" rows="3" data-validate="required:true" placeholder="<?php /* @escapeNotVerified */ echo __('Your Message') ?>"></textarea>
</div>
</div>
</fieldset>
<div class="actions-toolbar">
<div class="primary">
<input type="hidden" name="image" id="quote_image" value="" />
<input type="hidden" name="productName" id="productName" value="<?php echo $productName; ?>" />
<button type="submit" id="submit" title="<?php /* @escapeNotVerified */ echo __('Submit') ?>" class="action submit primary">
<span><?php /* @escapeNotVerified */ echo __('Submit') ?></span>
</button>
</div>
</div>
</form>
<script>
require(['jquery'],function($)
$(document).ready(function()
$('#drawpad-form').submit(function()
$('#submit').click(function(e)
this.disabled = true;
);
);
);
);
</script>
magento2 javascript jquery form-validation submit-form
I'm trying to disable button after submitting form, but i'm facing some issue, when i submit black field it validate the form and disable the button... but i want to disable it on form submit successfully....go through many answers but could not succeed.
Here is my phtml file:
<form class="form quote"
action="<?php /* @escapeNotVerified */ echo $block->getUrl("partsquote/index/QuotePost", array("_secure" => true));?>"
id="drawpad-form"
method="post"
data-hasrequired="<?php /* @escapeNotVerified */ echo __('* Required Fields') ?>"
data-mage-init='"validation":' enctype="multipart/form-data">
<?php echo $block->getBlockHtml('formkey')?>
<fieldset class="fieldset">
<!--legend class="legend"><span><?php /* @escapeNotVerified */ echo __('Quote Request') ?></span></legend><br /-->
<div class="fields">
<div class="field name required">
<label class="label" for="name"><span><?php /* @escapeNotVerified */ echo __('Your Name') ?></span></label>
<div class="control">
<input name="name" id="quote_name" title="<?php /* @escapeNotVerified */ echo __('Your Name') ?>" placeholder="<?php /* @escapeNotVerified */ echo __('Your Name') ?>" value="" class="input-text" type="text" data-validate="required:true"/>
</div>
</div>
<div class="field email required">
<label class="label" for="email"><span><?php /* @escapeNotVerified */ echo __('Your Email') ?></span></label>
<div class="control">
<input name="email" id="quote_email" title="<?php /* @escapeNotVerified */ echo __('Your Email') ?>" placeholder="<?php /* @escapeNotVerified */ echo __('Your Email') ?>" value="" class="input-text" type="email" data-validate="required:true, 'validate-email':true"/>
</div>
</div>
</div>
<div class="field">
<label class="label" for="state"><span><?php /* @escapeNotVerified */ echo __('Your State / Province') ?></span></label>
<div class="control">
<select name="state" id="quote_state" class="required-entry validate-state" title="Your State / Province" aria-required="true">
<option value="" selected="selected">Please Select State / Province</option>
<?php foreach($block->getRegionCollection() as $region): ?>
<option value="<?php echo $region->getName(); ?>"><?php echo $region->getName(); ?></option>
<?php endforeach; ?>
</select>
</div>
</div>
<div class="fields">
<div class="field phone required">
<label class="label" for="phone"><span><?php /* @escapeNotVerified */ echo __('Your Phone Number') ?></span></label>
<div class="control">
<input name="phone" id="quote_phone" title="<?php /* @escapeNotVerified */ echo __('Your Phone Number') ?>" value="" placeholder="<?php /* @escapeNotVerified */ echo __('Your Phone Number') ?>" class="input-text" type="number" data-validate="required:true"/>
</div>
</div>
<div class="field product required">
<label class="label" for="product"><span><?php /* @escapeNotVerified */ echo __('Product Voltage/Wattage') ?></span></label>
<div class="control">
<input name="product" id="quote_product" title="<?php /* @escapeNotVerified */ echo __('Product Voltage/Wattage') ?>" placeholder="<?php /* @escapeNotVerified */ echo __('Product Voltage/Wattage') ?>" value="" class="input-text" type="text"/>
</div>
</div>
</div>
<div class="field message required">
<label class="label" for="message"><span><?php /* @escapeNotVerified */ echo __('Your Message') ?></span></label>
<div class="control">
<textarea name="message" id="quote_message" title="<?php /* @escapeNotVerified */ echo __('Your Message') ?>" class="input-text" cols="5" rows="3" data-validate="required:true" placeholder="<?php /* @escapeNotVerified */ echo __('Your Message') ?>"></textarea>
</div>
</div>
</fieldset>
<div class="actions-toolbar">
<div class="primary">
<input type="hidden" name="image" id="quote_image" value="" />
<input type="hidden" name="productName" id="productName" value="<?php echo $productName; ?>" />
<button type="submit" id="submit" title="<?php /* @escapeNotVerified */ echo __('Submit') ?>" class="action submit primary">
<span><?php /* @escapeNotVerified */ echo __('Submit') ?></span>
</button>
</div>
</div>
</form>
<script>
require(['jquery'],function($)
$(document).ready(function()
$('#drawpad-form').submit(function()
$('#submit').click(function(e)
this.disabled = true;
);
);
);
);
</script>
magento2 javascript jquery form-validation submit-form
magento2 javascript jquery form-validation submit-form
edited Aug 1 at 15:49
Saif Zakir
asked Aug 1 at 15:06
Saif ZakirSaif Zakir
798 bronze badges
798 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
My problem was solved when i add bind section to my script file.
Totally i did this 2 steps :
1 - Disable button and prevent double submitting :
$('form').submit(function ()
$(this).find(':submit').attr('disabled', 'disabled');
);
2 - Enable submit button if validation error occurred :
$("form").bind("invalid-form.validate", function ()
$(this).find(':submit').prop('disabled', false);
);
add a comment |
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%2f284123%2fmagento-2-how-to-disable-button-on-form-submit%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
My problem was solved when i add bind section to my script file.
Totally i did this 2 steps :
1 - Disable button and prevent double submitting :
$('form').submit(function ()
$(this).find(':submit').attr('disabled', 'disabled');
);
2 - Enable submit button if validation error occurred :
$("form").bind("invalid-form.validate", function ()
$(this).find(':submit').prop('disabled', false);
);
add a comment |
My problem was solved when i add bind section to my script file.
Totally i did this 2 steps :
1 - Disable button and prevent double submitting :
$('form').submit(function ()
$(this).find(':submit').attr('disabled', 'disabled');
);
2 - Enable submit button if validation error occurred :
$("form").bind("invalid-form.validate", function ()
$(this).find(':submit').prop('disabled', false);
);
add a comment |
My problem was solved when i add bind section to my script file.
Totally i did this 2 steps :
1 - Disable button and prevent double submitting :
$('form').submit(function ()
$(this).find(':submit').attr('disabled', 'disabled');
);
2 - Enable submit button if validation error occurred :
$("form").bind("invalid-form.validate", function ()
$(this).find(':submit').prop('disabled', false);
);
My problem was solved when i add bind section to my script file.
Totally i did this 2 steps :
1 - Disable button and prevent double submitting :
$('form').submit(function ()
$(this).find(':submit').attr('disabled', 'disabled');
);
2 - Enable submit button if validation error occurred :
$("form").bind("invalid-form.validate", function ()
$(this).find(':submit').prop('disabled', false);
);
answered Aug 1 at 16:02
Saif ZakirSaif Zakir
798 bronze badges
798 bronze badges
add a comment |
add a comment |
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%2f284123%2fmagento-2-how-to-disable-button-on-form-submit%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