The weekday tag has no wiki summary.
1
vote
1answer
25 views
Show weekdays in html table using jQuery loop
Currently I'm showing various weather parameters in a table and I also want the current day and the six following days to be in the first column.
I started to create the weekdays like this:
// Make ...
-2
votes
5answers
62 views
Can anybody make this code shorter using a loop?
Just a short program that figures out what day it will be in an amount of days the user inputs. I have it starting at DAY 6 which is Saturday. Is there a way I can shorter the code using a loop?
...
1
vote
2answers
87 views
Week Commencing in Laravel 4
I have an $events object that gets a bunch of results from various tables in my database using Query Builder in Laravel 4. See here http://paste.laravel.com/qIj
I'd like to separate those results in ...
0
votes
1answer
27 views
Limit Date and time and skipping weedays?
I have a cod that calculates the end date using the duration and start date, which works fine.
But now the problem is that I want to count the time between 08:00:00 and 16:00:00 in eight-hour blocks. ...
1
vote
1answer
33 views
performing an IF statement based on the weekday name
I have the following VB.NET code:
Dim tomorrow = Now.Date.AddDays(1)
Dim weekdayname = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(tomorrow.DayOfWeek)
If weekdayname = "Thursday" Then
...
-1
votes
1answer
79 views
GregorianCalendar returns wrong DAY_OF_WEEK in Java
This code:
Calendar calendar;
calendar = GregorianCalendar.getInstance();
calendar.set(year, month, day);
week_day = calendar.get(Calendar.DAY_OF_WEEK);
returns wrong value.
For example when ...
0
votes
1answer
117 views
JSTL - Display content on specific week day
I am currently using the following code to display some content on the 30th of November 2012:
<jsp:useBean id="now" class="java.util.Date"/>
<fmt:formatDate var="currentDate" value="${now}" ...
0
votes
3answers
108 views
Find the weekday of month by date
I am trying to find the number of weekday of month by passing a date in C#.
For ex.: If I pass "3/6/2013 (6-Mar-2013)" the function should say 1st wednesday of month.
If I pass "3/1/2013 ...
1
vote
1answer
106 views
How do I find a future date based upon the corresponding weekday?
I am developing a calendaring system whereby events are created. I need to be able to "roll forward" any event (which occurs on a single day) to a user-specified month/year.
For example, March 4, ...
0
votes
4answers
78 views
PHP get weekday of setDate()
I'm trying to create a calendar in php. I need to get the weekday (sunday, monday, etc) of the first day of the month. My code so far is:
<?php
$current_month = date("n");
$current_year = ...
0
votes
4answers
63 views
How to calculate a Elapsed Time based on DateTime and Days to be spent in c#
I'd like to know if exists any library / method that allows to sum days to a datetime without consider the "no work days" like Easter, Christmas, Saturdays and so on..
I know that exists the method ...
1
vote
0answers
76 views
django weekly calendar
I'm trying to implement a weekly calendar on my website using Django. It represents a class schedule for students, and I want them to be able to add their own classes and such. I've found a lot of ...
1
vote
1answer
195 views
MySql SELECT WHERE Date is greater than past 10 weeks (starting at prev Sunday)
The problem I'm running into is when running this query it starts the week interval from the current date (minus 7 days from current date). I want to do all previous 10 weeks (Sun-Mon). So if my ...
1
vote
3answers
150 views
How can I get the date of the Nth weekday of a given month in a MySQL query?
I've searched for answers and while I've found similar questions answered online I've been unable to use them for my purpose. I need help.
I'm building a calendar which supports recurring events. ...
0
votes
3answers
62 views
Ruby, how to know if today is in a list of approved days?
I'd like one of my classes to only run on Tuesday,Wed,and Thursday. I have the following:
class ReminderJob
def perform
begin
# Days to send: Tuesdays, Wednesdays, Thursdays
...
4
votes
1answer
147 views
Only Select Friday and coming Monday in mysql
I have assignment on my hand of building an Attendance system which I am doing all right but I am stuck at one place. When counting the leaves, if a person takes a leave on Friday and then take leave ...
1
vote
1answer
159 views
PHP: getting weekdays numbers of a given month
Given a Month and a weekday, I need to build a function that can retrieve the day number of all Mondays, Tuesdays, Wednesdays, Thursdays and Fridays.
Let's say I give the function this month, ...
0
votes
2answers
878 views
vb.net - How to get the day number from a weekday name
Long story short:
I need the inverted function of WeekdayName(), in the following terms:
You provide a week day name (e.g. Sunday)
You get the correspondent week day number (that depends which is ...
0
votes
1answer
190 views
I want to represent weekdays in a gridview
<asp:GridView ID="grid1" runat="server" AutoGenerateColumns="False">
<Columns>
<asp:BoundField DataField='id' HeaderText="Id" Visible="False" />
<asp:BoundField ...
1
vote
3answers
193 views
Previous weekday in Python
In Python, given a date, how do I find the preceding weekday? (Weekdays are Mon to Fri. I don't care about holidays)
3
votes
2answers
301 views
jQuery datepicker start date interval not showing
I use jQuery datepicker for showing users available days and wants to disable and mark red busy days. I use for this beforeShowDay datepicker option:
beforeShowDay: function(date) {
var ...
0
votes
3answers
440 views
How to set first day of week in a Java application calendar
We use a java application, it has a date selection field, when you click there a small calendar opens. First day of the week is Sunday there. But I want it to be Monday. I try to change it from ...
0
votes
1answer
74 views
How long time till a Weekday or a Date
I want to find out how long time there is till a specific Weekday from Now.
I have searched everywhere, but can't really find anything.
I THINK I have to use the DateDiff-function together with the ...
3
votes
3answers
143 views
Number of Tuesdays in the current month in objective c
I'm looking for a way to calculate the number of Tuesdays in the current month in Objective C.
For example if the code ran today (July 16, 2012) it would ouput 5 because there are 5 Tuesdays in the ...
0
votes
0answers
476 views
MySQL DateDiff to only count businessdays (weekdays)
I have this long and nasty MySQL query
SELECT
s.student_socialnr, s.student_lastname, s.student_firstname,
cs.city_name,
c.customer_name,
scp.cpl_startdate, scp.cpl_enddate, scp.cpl_coursename, ...
3
votes
2answers
4k views
How to add number of days to a date, consider only business days (i.e. ignore weekends)?
I'm trying to create a formula to calculate the n-th Business Date (only Monday to Friday are business days).
For simplicity's sake, holidays are not important; only weekends should be ignored.
For ...
1
vote
1answer
494 views
php convert weekday to date
function dayDate($day) {
$dayArr = array(
0 => 'MONDAY',
1 => 'TUESDAY',
2 => 'WEDNESDAY',
3 => 'THURSDAY',
4 => ...
14
votes
3answers
7k views
which day of week given a date python
I want to find out the following.
Given a date (datetime object), what is the corresponding day of the week.
Like if Sunday is 1st day, Monday: 2nd day.. and so on
And then if the input is ...
2
votes
5answers
382 views
How to get the 7 days in a week with a currentDate in javascript?
(first, sorry for my bad english, i'm a beginner)
I have a chart of percent by date. I would like to display every day of the current week in the x-axis.
So, i tried to find how to get the seven ...
0
votes
3answers
952 views
How to check if current time falls within a specific range on a week day using jquery/javascript?
When a user visits a page I need to check if the current time falls between 9:00 am and 5:30pm on a weekday and display something using jquery/javascript.But I am not sure how can check that.
Could ...
3
votes
2answers
215 views
Algorithm to find continuous days in a week
The user can select any number of week days from a list. An algorithm shall find the longest continuous group of selected days. The start day can be after the end day, if the group spans two weeks. If ...
4
votes
3answers
309 views
32 hours ago excluding weekends with php
So I have a script that does multiple checks for 32, 48 and 72 hours ago.
Basically I check my database for entries that are at least x hours old.
Now this works fine like this:
$date = date('Y-m-d ...
1
vote
1answer
605 views
Check day of week in Android
I want to check if the current day of the week is Sunday or not. How can I find it out? I am using this in alarm activity. Please help me. I want to setup an alarm which does not work on Sunday. ...
2
votes
1answer
441 views
Weekday jQuery UI Tabs open on current day
I have weekday jQuery UI tabs as follows which I want to open on the current weekday:
<div id="tabs">
<ul>
<li><a href="monday.php">Monday</a></li>
...
2
votes
1answer
141 views
Monday as first day of week for WeekArchiveView
How do I convince WeekArchiveView that Monday is the first day of week?
1
vote
2answers
135 views
Is there an R package that will handle POSIX objects and return the nth N-day of the week?
I have written a function which, when provided a range of dates, the name of a particular day of the week and the occurrence of that day in a given month (for instance, the second Friday of each ...
4
votes
3answers
160 views
Python: weekday position of following months
Given a date, how do you know the weekday position in the month (ex: third tuesday of the month) and how do you get the date for the same weekday for the next month (ex: third tuesday of the month+1)?
...
0
votes
1answer
1k views
finding weekday with php getdate() function
I am trying to build a function in php where it takes the user input date, which can be any date within pretty much the last 20 years. i tried to use the getdate() function in php to return to them ...
0
votes
2answers
361 views
strtotime for weekdays starting on actual week
I'm trying to get the starting monday date of the actual week we are in. Like we are July 15th and would like to have the result with strtotime to return July 11th...
I've tried
strtotime("-1 ...
-1
votes
4answers
153 views
Java Date and time
Hey guys im trying to find some info regarding java and the calendar class. I need to write an if statement that says if it is a weekend i.e sat or sunday then do this else do this
Cheers
Thanks for ...
0
votes
1answer
119 views
How do I get both functions to work at once in Python?
I'm really new to all this and right now I'm trying to get two functions to perform and print, but I can't seem to grasp it:
import datetime
def get_date(prompt):
while True:
...
1
vote
2answers
386 views
how to convert a simple python code weekday check
Okay, i wrote this code myself awhile ago
but now im having trouble conerting it so it only does this years dates, ie the user would only have to type MM-DD instead of YYYY-MM-DD because we are ...
0
votes
3answers
309 views
How can I get the timestamp for a given day of week?
Basically, I have this requirement to convert a present/future weekday to a timestamp.
Example:
today = Thu, 24 Feb 2010
weekday = Tue
next date = Tue, 1 Mar 2010
cur stamp = 1267016400
new ...
2
votes
3answers
383 views
Display tomorrow's name in javascript?
I am trying to output something similar to the following on our ecommerce website:
Order by 5pm today for dispatch on Monday
Obviously, the word Monday would be replaced by the name of the next day ...
1
vote
1answer
351 views
iPhone - how may I check if a date is Monday?
I'm trying to find if a date is Monday.
To do this I proceed this way :
#define kDateAndHourUnitsComponents NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | ...
0
votes
4answers
7k views
Need to find next and previous working day in oracle
My query is somewhat like this:
select 1 from dual where :p1_task_date in (sysdate,sysdate+1,sysdate-1) and :p1_task_id is not null
This works fine, but I wanted to get next/previous working days ...
1
vote
1answer
2k views
Can I have custom UILocalNotification repeat intervals (i.e. weekdays only?)
I would like to be able to schedule a UILocalNotification to repeat at the same time every day, but only on weekdays (no Saturdays or Sundays). Is this possible using the repeat interval feature of ...
4
votes
4answers
852 views
how can I make sure a day is a weekday in Rails?
I have a message substitution called next_week which basically takes Date.today + 7.days.
However, although I still want to send emails on weekends, if the next_week falls on a weekend, I want it to ...
2
votes
1answer
893 views
Changing first day of the week in NSDateFormatter
In order to get the days of the week I use:
NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
NSArray *weekdays = [dateFormatter shortWeekdaySymbols];
Weekdays gives me ...
0
votes
3answers
7k views
Objective C - How can i get the weekday from NSDate?
I need to be able to get the weekday from nsdate, i have the following code and it always return 1. I tried to change the month, i tried everything from 1 to 12 but the result of the week day is ...