Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6592829
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:36:19+00:00 2026-05-25T17:36:19+00:00

I want a user to see a detailed date when he selects a day

  • 0

I want a user to see a detailed date when he selects a day from the jQuery Datepicker. However the format I want to post and save in the database has to be different that the one showed.

As you see, the 2 textboxes have this DD, d MM yy format. This is what I want to show to the people so it stays that way. But for my code to work correctly, this date must be saved in the database in the format of Y-m-d (like 2012-03-23)

I want to avoid using PHP code after the form submits for the transformation. Maybe with a hidden field that automatically gets and transforms the value of #enarksi and #liksi ? After that I will post the hidden’s fields value.

$(document).ready(function() {

    var date = new Date();
    var m = date.getMonth(),
        d = date.getDate(),
        y = date.getFullYear();

    $('#enarksi, #liksi').datepicker({
        minDate: new Date(y, m, d),
        dateFormat: 'DD, d MM yy'
    });

    $("#enarksi, #liksi").datepicker($.datepicker.regional["el"]);

});
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T17:36:20+00:00Added an answer on May 25, 2026 at 5:36 pm

    Using the onSelect event of the datepicker, you can parse the date when it changes and set it to a hidden field.

    $('#enarksi, #liksi').datepicker({
        minDate: new Date(y, m, d),
        dateFormat: 'DD, d MM yy',
        onSelect: function(selectedDate) {
            // Parse the selected date
            var instance = $(this).data('datepicker'),
                date = $.datepicker.parseDate(
                    instance.settings.dateFormat ||
                    $.datepicker._defaults.dateFormat,
                    selectedDate, instance.settings);
    
            // Reformat
            var formatted = $.datepicker.formatDate('yy-mm-dd', date);
    
            // Set the formatted date
            $('#hiddenField').val(formatted);         
        }
    });
    

    You just need to find some way to select a hidden field. For example, you could use a data- attribute on your textboxes, such as data-hidden-field, and then just replace the last line of code with $('#' + $(this).data('hidden-field')).val(formatted);

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a login page, I want the user to see his name
I want the user to be able to see my application in the menu
We want to implement a News feed where a user can see messages broadcasted
I want to encrypt a URL variable so that the user can't see the
I have list of images. I want that user can see images by sliding
I have a chart and I want the user to see the values when
How can I hide/secure image path in asp.net? I don't want the user see
I have a webpage where I want the user to see a new image
In my (graphical) Java application in certain cases I want the user to see
According to this documentation, http://jqueryui.com/demos/datepicker/#option-altFormat I can set a different date format for the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.