in Education by
Please note this question is about datetimepicker NOT datepicker. I have a datetimepicker that is initialised to the current date. When user selects an option in a select element, I want to update the datetimepicker based on the selected date. Here is my code: $("#date_from").datetimepicker({ format: 'D MMM Y - H:mm', defaultDate: new Date(), stepping: 10, minDate: new Date() }); $('select').on('change', function (e) { updating_date = this.value; // gives a value like 2019-04-06 10:30:00 // I want to update the datetimepicker to reflect updating_date } Any help would be appreciated. JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
To do that, you need to change the options of your DateTimpePicker element. 2 things to know : $('#date_from').data("DateTimePicker").options() get you all the options of your element. To change these options - the date in your case - you can add your new datetime in the paramater of the option method. Info on this link : https://eonasdan.github.io/bootstrap-datetimepicker/Options/#date $('select').on('change', function (e) { var updating_date = new Date('2019-04-06 10:30:00'); $('#date_from') .data("DateTimePicker") .options({ 'date': updating_date }); }); Snippet $("#date_from").datetimepicker({ format: 'D MMM Y - H:mm', defaultDate: new Date(), stepping: 10, minDate: new Date() }); $('select').on('change', function (e) { var updating_date = new Date('2019-04-06 10:30:00'); //console.log($('#date_from').data("DateTimePicker").options()); $('#date_from') .data("DateTimePicker") .options({ 'date': updating_date}); });
Run code snippetExpand snippet

Related questions

0 votes
    I'm building an application with C# code. How do I get only the date value from a DateTimePicker ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 7, 2022 in Education by JackTerrance
0 votes
    I wanted to find a way to extract from the url the classes to be added to the body. I made some ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    I wanted to find a way to extract from the url the classes to be added to the body. I made some ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    SELECT id, amount FROM report I need amount to be amount if report.type='P' and -amount if report.type='N' ... this to the above query? Select the correct answer from above options...
asked Jan 28, 2022 in Education by JackTerrance
0 votes
    I want to select rows from a DataFrame based on values in some column in pandas, How can I do it? I ... WHERE column_name = some_value Select the correct answer from above options...
asked Jan 22, 2022 in Education by JackTerrance
0 votes
    I have this dataframe and trying to select the last n (=2) rows if the present value is True so I code as ... , I should select 50,40 Select the correct answer from above options...
asked Jan 8, 2022 in Education by JackTerrance
0 votes
    Based on the print technology there are different types of printers, select the odd one among the followings: ... its very urgent Select the correct answer from above options...
asked Nov 30, 2021 in Education by JackTerrance
0 votes
    Select a game which is based on Data Science domain of AI: a) Rock Paper and Scissors b) Mystery Animal c ... Scavenger Hunt d) Pokémon Select the correct answer from above options...
asked Nov 12, 2021 in Education by JackTerrance
0 votes
    Select a CI tool based on it’s _________________________. (a)Both the options (b)Resistability (c)None of the options (d)Extendability...
asked Oct 7, 2020 in Technology by JackTerrance
0 votes
    In SQL Server, it's possible to insert into a table using a SELECT statement: INSERT INTO Table (col1, col2, ... .id = other_table.id Select the correct answer from above options...
asked Jan 26, 2022 in Education by JackTerrance
0 votes
    Have jquery dialog as closeOnescape as false. want to trigger an event based on esc key press how do ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 20, 2022 in Education by JackTerrance
0 votes
    I found found several question's answers similar to this, I tried some of them, but no luck. May ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 20, 2022 in Education by JackTerrance
0 votes
    I found found several question's answers similar to this, I tried some of them, but no luck. May ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 8, 2022 in Education by JackTerrance
0 votes
    what is the another name of weight update rule in adaline model based on its functionality? (a) LMS error learning ... (d) none of the mentioned Please answer the above question....
asked Sep 21, 2022 in Education by JackTerrance
...