Tagged Questions
5
votes
7answers
2k views
JQuery Datetime picker - Need to pick month and year only
I went through this post http://stackoverflow.com/questions/2208480/jquery-date-picker-to-show-month-year-only which is very helpful to me in order to hack the datetime picker UI to suit my situation. ...
4
votes
3answers
2k views
jQuery datepicker display year month only
I am using datepicker to select year-month only. I filter out the day part like so:
$(el).datepicker(
{changeMonth: true,
changeYear: true,
dateFormat:'yymm' }
);
The code comes from the ...
2
votes
1answer
125 views
Get year of previous and next months
In my calendar, I need to compare the current year to the years of previous and next years to find out if the month needs to reset back to January, and the year incremented/decremented. I already have ...
2
votes
6answers
299 views
MySQL: Is it possible to 'fill' a SELECT with values without a table?
I need to display the total of 'orders' for each year and month. But for some months there is no data, but I DO want to display that month (with a total value of zero). I could make a helpertable ...
2
votes
5answers
7k views
How to get year, month, day, hours, minutes, seconds and milliseconds of the current moment in Java?
I would like to have them as strings.
1
vote
1answer
166 views
WordPress: display archive links grouped by year
I'm currently using wp_get_archives('type=monthly') to display archive links in my sidebar. This is the output:
<ul>
<li><a href='http://example.com/2011/08/'>August ...
1
vote
2answers
1k views
php extract year/month/day/hour/minute/seconds from a date
if i have a date and i want to extract the year, the month, etc in PHP5, how should i proceed?
if i do
$y = date('Y',$sale->end);
it doesn't work...
1
vote
1answer
229 views
PHP iterate days of month given month and year
How can I print (echo) the days of an unknown month if month and year are parameters?
Thank you.
0
votes
3answers
127 views
Determine current year or previous year based upon month selection
I have inherited an archive program written in C#. The previous developer was only interested in archiving data from the previous month. However, some months were missed and my task had been to add ...
0
votes
1answer
212 views
RichFaces Calendar: Month and Year only display
I am using Richfaces4.0; need to display selection of month and year only; user chooses it.
<rich:calendar id="start" value="#{reportBean.fromDate}" oncurrentdateselect="alert('Hello');" ...
0
votes
1answer
81 views
SAS EG date issue
i want to build a bar chart where the X-axis is month year ( example : NOV 2010)
in my dataset i got a column called MonthYear contains the month year value.
The problem is when i use the MonthYear ...
0
votes
1answer
322 views
Can I change the number of days in a month based on the month?
I'm creating a form, and I want it to ask the person their full birthday. I'm collecting the day, month, and year in which they were born. I have 2 questions:
Can I make it so if they select ...
0
votes
3answers
114 views
Java - Before a certain month of every year
How could I code a method that will allow a number to be added to another number before a certain month of each year?
Thanks,
Chris.
0
votes
1answer
146 views
jQuery: How can I work with dates in this format? mm/yyyy
I'm doing a web application for articles
Articles must be shown by month, with its published date stored as mm/yyyy
Now:
1- Should I use a DATE type field for storing?
2- Will jQuery UI datePicker ...
0
votes
3answers
281 views
Listing blog entries by year,month
I want to do something like this:
Entries.objects.values('date.year','date.month')
but this line is not valid. How can I list blog entries by year,month and display them in template?
Thanks!
-2
votes
3answers
159 views
Help Please!! java
I did the ode but it's not working the way I want it too. For example if I change
int y = 2000, m = 5, d = 06; to int y = 2889, m = 44, d = 16; it prints it instead of what is in the if statement ...