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 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'm using MVC2 and have included the Jquery DateTime picker. For some reason it
I am using jQuery-UI Datepicker (via ZendX view helper) to select dates. Now I
I've got an ASP user control which is basically using jquery UI datepicker just
I'm using the jquery datepicker. The changeYear and changeMonth options are set to true.
I am a novice using jQuery UI datepicker on a commerce site to set
I am using the date picker provided by jQuery UI to select a date
Using jQuery , how can I dynamically set the size attribute of a select
Using jQuery, how would you find elements which have a particular style (eg: float:
I am using jquery datepicker, please see below code $(document).ready(function() { $(.txtDate).datepicker({ showOn: 'button',

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.