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

  • Home
  • SEARCH
  • 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 4091500
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T19:22:29+00:00 2026-05-20T19:22:29+00:00

I am using jquery UI datepicker on MVC2 to set my startdate picker. When

  • 0

I am using jquery UI datepicker on MVC2 to set my startdate picker.

When I go to the ‘create’ view, I want the datepicker to hold its minimal value- which is today.

But for some reason I see the date format string like this: mm/dd/yyyy HH:MM:SS AM or PM.
only before the user pick a date- after the user picks a date I get the format that I want: mm/dd/yyyy in both of my datepickers- dateStart and dateEnd

and when I go to edit, I get the value from the database (date datatype) and have the same problem.
this is my code:

$(function () {
        var buttonImage = $(".selector").datepicker("option", "buttonImage"); // date image

        // Datepicker
        $('#DateStart').datepicker({
            inline: true,
            showOn: 'both',
            buttonImage: '/Content/calandar2.gif',
            minDate: '+0',
            dateFormat: 'mm/dd/yy',
            onSelect: function (dateStr) {
                var min = $(this).datepicker('getDate') || new Date(); // Selected date or today if none
                $('#DateEnd').datepicker('option', { minDate: min });
            }
        });

        $('#DateEnd').datepicker({
            inline: true,
            showOn: 'both',
            buttonImage: '/Content/calandar2.gif',
            dateFormat: 'mm/dd/yy',
            minDate: '+0'
        });
}

THANK YOU!!!

  • 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-20T19:22:30+00:00Added an answer on May 20, 2026 at 7:22 pm

    It sounds like your issue is with the HtmlHelper and the DateTime value.

    <%=Html.TextBoxFor(model=>model.SomeDate) %>
    

    or

    <%=Html.EditorFor(model=>model.SomeDate) %>
    

    Which by default will call DateTime.ToString()

    If that is the case you can either convert it to be simply

    <%
      var theValue = //something to get your date time and call .ToShortDateString()
    %>
    <%=Html.TextBox("DateStart", value) %>
    

    If you are using templates you can also do this:

    <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<System.DateTime?>" %>
    <%
        string value;
        if (Model.HasValue && Model.Value != DateTime.MinValue) 
            value = Model.Value.ToShortDateString();
        else 
            value = string.Empty;
    %>
    <%=Html.TextBox("", value) %>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using the jquery ui datepicker inline mode view I want to be
I am using jQuery Datepicker and I have a little problem. If the datepicker
Hi i am using jquery-ui datepicker to select date and date.js to find difference
I'm using the JQuery DatePicker to have the user pick a date and have
I have an asp.net mvc calendar application (using jquery ui datepicker) and i am
I'm using Keith Wood jQuery Calendars Datepicker (not his jQuery Datepicker ). In one
I'm using jQuery UI, specifically Datepicker and Autocomplete, as follows: <script src=http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js></script> <link href=http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css
I am using PHP and jQuery for a project. As some forms are reused
i have a html form with 3 fields dateFrom and dateto and iam using
I'm making a large and complex application and I need to set tabindexes to

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.