Book Image

jQuery UI 1.10: The User Interface Library for jQuery - Fourth Edition

Book Image

jQuery UI 1.10: The User Interface Library for jQuery - Fourth Edition

Overview of this book

jQuery UI, the official UI widget library for jQuery, gives you a solid platform on which to build rich and engaging interfaces quickly, with maximum compatibility, stability, and effort. jQuery UI's ready-made widgets help to reduce the amount of code that you need to write to take a project from conception to completion. jQuery UI 1.10: The User Interface Library for jQuery has been specially revised for Version 1.10 of jQuery UI. It is written to maximize your experience with the library by breaking down each component and walking you through examples that progressively build up your knowledge, taking you from beginner to advanced user in a series of easy-to-follow steps. Throughout the book, you'll learn how to create a basic implementation of each component, then customize and configure the components to tailor them to your application. Each chapter will also show you the custom events fired by the components covered and how these events can be intercepted and acted upon to bring out the best of the library. We will then go on to cover the use of visually engaging, highly configurable user interface widgets. At the end of this book, we'll look at the functioning of all of the UI effects available in the jQuery UI library.
Table of Contents (22 chapters)
jQuery UI 1.10: The User Interface Library for jQuery
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Minimum and maximum dates


By default, the datepicker will go forward or backward infinitely, there are no upper or lower boundaries. If we want to restrict the selectable dates to a particular range, we can do it easily using the minDate and maxDate options. Change the configuration object in datePicker2.html to the following:

$("#date").datepicker({
  minDate: new Date(),
  maxDate: "+10"
});

Save this as datePicker3.html. In this example, we supply a standard, unmodified JavaScript date object to the minDate option, which will set the minimum date to the current date. This will make any dates in the past unselectable.

For the maxDate option, we use a relative text string of +10, which will make only the current date and the next 10 dates selectable. You can see how these options affect the appearance of the widget in the following screenshot:

Note

The minDate and maxDate options can also take strings such as +6w, -10m, or 1y, which represent weeks, months, and years respectively. You can find...