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 8075643
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T15:03:37+00:00 2026-06-05T15:03:37+00:00

I know how to make a datepicker ui control draggable. I am just having

  • 0

I know how to make a datepicker ui control draggable. I am just having a hard time trying to restrict how much it displaces horizontally.

It is difficult to explain in words. Here is what I am trying to achieve.

and here is the result.

Note how you are able to drag the datepicker horizontally. I don’t want:

enter image description here

that gap to be greater than 0. I want the same behavior for the right part of the datepicker so that the calendar is always visible. right now if you drag it towards the left it is posible to hide the calendar. If you drag it towards the right on the other hand, you cannot hidde it. If your screen is to small though you will not be able to see the last month.

What approach should I take to solve this problem?

enter image description here
enter image description here

  • 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-06-05T15:03:40+00:00Added an answer on June 5, 2026 at 3:03 pm

    Draggable raises some events (start, drag, stop) which all provide a helper object as second argument with the position and offset the dragged element:

    • ui.position – current position of the helper as { top, left } object, relative to the offset element
    • ui.offset – current absolute position of the helper as { top, left } object, relative to page

    My solution is to animate back the edge of the container when the dragged element is dragged too far on the left when dragging is stopped:

    $("#draggable2").draggable({
        axis: "x",
        ...
        stop: function(e, ui) {
            if (ui.offset.left > 0) {
                $(this).animate({
                    'left': (ui.position.left - ui.offset.left) + 'px'
                }, 250);
            }
        },
        containment: $("#draggableParent")
    });​
    

    DEMO
    DEMO (full screen)

    I think you can easily dig a little bit around to achieve the same result from the right dragging.

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

Sidebar

Related Questions

I am just trying to make a timer. I would like to use UIDatePickerModeCountDownTimer
I know how make a PDF from LaTeX. Is there a way to extract
I don't know how make my application as auto start application.That is my expectation
I'm thinking about frameworks. I know they make life a lot easier, but as
I know how to make the intellisense work in a .js file using this
I know how to make the list of the Fibonacci numbers, but i don't
Does anyone know how to make labels, or text, smoother? At the moment they
does anybody know how to make EJBTimers persistent not in filesystem, but in selected
I don't know what's make wrong, my map can load, but the image on
HI May i know how to make the scroll view as mentioned in this

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.