skip to Main Content

Jquery datepicker not working when add in documnet ready

I have a custom datepicker like this <input id='mydatepicker' data-mddatetimepicker='true' data-placement='left' data-trigger='focus' data-enabletimepicker='false' /> When I use it in html code work well. For example : <div class="col-md-4" id="mydiv"> <input id='mydatepicker' data-mddatetimepicker='true' data-placement='left' data-trigger='focus' data-enabletimepicker='false' /> </div> But I want…

VIEW QUESTION

how to setup dynamically minDate and maxDate jquery for datepicker

I have two datepickers in Jquery, the second datepicker values (min and max) should depend on the first datepicker actual value. This is my code: <input aria-label="date" type="text" id="EffectiveDate" data-bind="value: EffectiveDate" name="EffectiveDate" placeholder="dd/mm/yyyy" disabled="disabled" size="10" maxlength="10" style="margin-left:0px;" /> <input aria-label="date"…

VIEW QUESTION

Reactjs – Mantine DatePickerInput rendering bug

I'm trying to use Mantine's DatePickerInput in my react app but there seems to be an issue with how the component is rendered. Expected behaviour Current Behaviour Library versions: "react": "^18.2.0", "@mantine/core": "^7.1.7", "@mantine/dates": "^7.1.7", Implementation: <DatePickerInput name={name} placeholder={placeholder} ref={ref}…

VIEW QUESTION
Back To Top
Search