Can I highlight an entire week in the standard Jquery UI date picker?
|
feedback
|
|
I know this post is quite old but i just found this code on another site and thought it might help. i leave the link to the other site is quite interesting http://www.tikalk.com/incubator/week-picker-using-jquery-ui-datepicker | |||||
feedback
|
|
Here's an article that has an example of how to select an entire week with the datepicker.
| |||||
feedback
|
|
You may be able to follow the suggestions in this discussion to achieve your week selection feature: http://code.google.com/p/jquery-datepicker/issues/detail?id=13 Unfortunately, though, it looks like the jQuery datepicker can't handle picking an entire week. It'll need to be custom coded. | |||
|
feedback
|
|
This is incredibly late, but I was searching for the same solution and could only find reference to these types of answers (i.e. for a different date picker). In my case, I'm using it inline, so that's how this code works. If you want it to pop-up with a week highlighted, you would have to modify. Here is something that works:
Then define some CSS (I haven't really done this part myself, so this is ugly):
| ||||
|
feedback
|
|
The script highlights a week starting from the selected date. Logic: beforeShowDay : is run for each date in the calendar displayed. It is called at the time of display of the calendar and when a particular date is selected. onSelect : function captures the selected week starting from the selectedDay and beforeShowDay renders the selected week Here is a snippet which works with Jquery 1.5.1 and JQuery UI 1.8.1
| |||||
feedback
|
|
EDIT: Frictionless's answer is great, except that the question was of how to select the entire week (not the 6 days following whatever is clicked on). It was recommended that I copy my patch here. This is a simplified version of what I am using on my site. Note that the week picker is pegged to a <span> tag in order to show the first and last days of the week. This necessitates a trigger button which references /images/schedule.png. Change as required:
| |||||||||
feedback
|
|
I wrote a solution to this, which highlights the week. It will still pick the date selected, but that is fine for my purposes. #week is the input box that has the datepicker attached.
| ||||
|
feedback
|
|
I was looking to do the same thing but also wanted the input field to display the selected week range -- here's what I ended up doing (basically use the altField to store the selected date, but display a formatted week range in the input field that is replaced by the actual date using the datepicker beforeShow callback. Coffeescript is below; gist can be found here: https://gist.github.com/2048010
| |||
|
feedback
|