Topic: Time picker setting value via query or JS
Mikołaj Smoleński
staff answered 8 years ago
<div class="md-form">
<input placeholder="Selected time" type="text" id="input_starttime" class="form-control timepicker">
<label for="input_starttime">Light version, 12hours</label>
</div>
<button class="btn btn-primary" id="change-time">Change time</button>
<script>
$(document).ready(function() {
$('#input_starttime').pickatime({});
$('#change-time').on('click', function() {
$('#input_starttime').val('5:39');
})
});
</script>
belu pro commented 8 years ago
hi, thx so far. Copying works, but the placeholder - label of the input field does not move up - so the copied value is printed above the label. This happens in chrome, safari and bravo. How can this be solved? The same problem occurs when you have e.g. at a login page the logindata saved in the browser for autofill... thxMikołaj Smoleński staff commented 8 years ago
Please share the code here. It should work similiar to the above example. RegardsFREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Answered
- User: Pro
- Premium support: No
- Technology: MDB jQuery
- MDB Version: -
- Device: -
- Browser: -
- OS: -
- Provided sample code: No
- Provided link: No
belu pro commented 8 years ago
another question for time picker: is it possible to limit the minutes that can be chosen to 15,30,45,00 ? - so that it is not possible to choose e.g. 12:16