Topic: Stepper Question : disable auto open input or select field when I open a new step
lava97 free asked 5 years ago
Hi everyone, I created a stepper and when I open the second step the select in it automatically opens.how can I block the auto open of my select?or is there a method that allows me to understand when my step is open? so that I can use to class on my select.code of my step is: Step 2
<li class="step">
<div class="step-title waves-effect waves-dark">Step 2</div>
<div class="step-new-content">
<div id="bodyStep2Checkout" class="mb-3">
<select id="single"></select>
</div>
</div>
<div class="step-actions">
<button class="waves-effect waves-dark btn btn-sm btn-primary next-step">CONTINUE</button>
<button class="waves-effect waves-dark btn btn-sm btn-secondary previous-step">BACK</button>
</div>
</div>
</li>
javascrpit: var select = new SlimSelect({ select: '#single', showSearch: false });
Marta Wierzbicka staff answered 5 years ago
Hi,
try this code:
$(document).ready(function () {
$('.stepper').mdbStepper({
autoFocusInput: false,
});
})
Best, Marta
FREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Answered
- ForumUser: Free
- Premium support: No
- Technology: MDB jQuery
- MDB Version: 4.7.5
- Device: Dell Computer
- Browser: Chrome
- OS: Windows 10
- Provided sample code: No
- Provided link: No