Tagged Questions
The datejs tag has no wiki summary.
5
votes
1answer
121 views
is there any way to parse date in string using Datejs?
I came across Datejs recently and found it very useful. However I could not figure out if there is a way to parse a string and extract only date part from it using the same.
For example, if there is ...
5
votes
1answer
1k views
jQuery UI Datepicker and datejs
I want to have a datepicker where you can also just type basically I want to have the jQuery UI Datepicker and datejs in one. I want to type "tomorrow" and I want it to select the right day. I want to ...
3
votes
1answer
49 views
Date.js parseExact() not parsing 4 digit years when passed in as an array
Am I missing something with Date.parseExact() in date.js? According to the api documentation, I should be able to do this:
Date.parseExact("10/15/2004", ["M/d/yyyy", "MMMM d, yyyy"]); // The Date of ...
2
votes
2answers
39 views
If I have a time like 1325982833403 in JavaScript, how do I convert it to a datejs value?
The JavaScript library I'm using represents user login times as long integers:
1325982833403
How do I convert this to a DateTime ('MM/dd/yyyy hh:mm tt') value that the datejs library would ...
2
votes
1answer
121 views
Timeago + Localtime combined
I'm trying to combine timeago with datejs (with help of this to get format for local time)
for timeago I use the following:
jQuery(document).ready(function() {
jQuery("abbr.timeago").timeago();
...
2
votes
1answer
237 views
Date.js: Date.now() behaving oddly
I'm using date.js.
The line time_container.innerHTML = Date.now().toString('T'); worked fine, briefly, and is now throwing errors in the Firebug console: radix must be an integer at least 2 and no ...
2
votes
1answer
252 views
Parse ONLY a time string with DateJS
I'm using the excellent (but large) DateJS library to handle dates and times in my webapp. I just came across something that I'm not sure how to handle.
I want my users to be able to enter Time ...
2
votes
2answers
315 views
how to use filament's daterangepicker with new jquery?
I downloaded the daterangepicker available here : filament group
I am using jQuery 1.4.x version in my page, and all other plugins I am using are supported only on latest version of jQuery.
The ...
2
votes
2answers
532 views
Timeago + DateJS = NaN
I'm trying to use timeago (source), with datejs, and it's not working. Here's some sample code I'd expect to work (given that timeago and datejs are loaded):
>>> d = new Date()
Mon Jun 21 ...
2
votes
1answer
380 views
DateJS parsing mystery
I'm using DateJS to parse user-inputted dates, and getting some strange results.
Date.parse("15 Jan 2010") returns Fri Jan 15 00:00:00 EST 2010 (right)
Date.parse("15-Apr-2010") returns Thu Apr 15 ...
1
vote
1answer
34 views
How can I make Datejs return only the year when only the year is given?
I'm using Datjs to take a date from a user and convert it to a format suitable for storage in my database. When I supply a date with month, day, and year, I get just what I want, the date formatted ...
1
vote
2answers
53 views
Am I writing this wrong or is this a bug on Date.js (date ninja)
I am trying to use datejs (date ninja or whathaveyou..) and I am getting odd results.
Here's what I output to console to test.
var d1 = Date.today();
var d2 = Date.parse(work.tax_credit_start);
var ...
1
vote
1answer
90 views
Confusion over noon versus midnight with date.js
I am using date.js in my project, and I am encountering something I didn't expect with respect to dates that had time components of exactly noon or exactly midnight.
When I use the native javascript ...
1
vote
2answers
343 views
Comparing two dates with javascript or datejs (date difference)
I am trying to compare two dates which are in Finnish time form like this: dd.mm.YYYY or d.m.YYYY or dd.m.YYYY or d.mm.YYYY.
I am having a hard time finding out how to do this, my current code won't ...
1
vote
1answer
136 views
Datejs - Problem with 12:00 pm
I really have no idea what I'm doing wrong here. I can't get Datejs to properly parse "12:00 pm" however, it seems to work fine on other dates. Below is a clip from the Firefox debugger:
1
vote
1answer
336 views
How to parse arbitrary dates with datejs parseExact
I want to parse a date in this format '11h04 31/05/2011' and other arbitrary formats using datejs, I tried:
Date.parseExact("11h04 31/05/2011", "HH'h'mm dd/MM/yyyy")
and
Date.parseExact("11h04 ...
1
vote
1answer
57 views
How do I work out how many days ago date1 was compared to date2, using datejs?
var d1 = Date.parse(date); // eg, 7th jan
var d2 = Date.today(); // eg, 2nd jan
I want to do:
(d2 - d1).days
which with the above data, should return 5.
Is this possible with datejs?
1
vote
1answer
180 views
Javascript date comparison issues with datejs
I have a date object, but the isAfter function in the API of datejs is not working. I opened the js library and cannot find any mention of it in there. I downloaded the latest version from dateJS ...
1
vote
1answer
491 views
Format date based on the culture using datejs plugin
i'm using datejs library and i have a problem with the date format.
I need to print to the screen todays date without the hour.
When i run this line:
Date.today().toString('d')
i'm getting the ...
1
vote
2answers
192 views
How do I call DateJS' Date.parse() in Java?
How do I call DateJS' Date.parse() in Java?
This is what I am using:
import javax.script.*;
public class Demo
{
public static void main(String[] args) throws Exception
{
...
1
vote
1answer
134 views
Showing the last thursday of the current month with DateJS
I am trying to show the last thursday of the current month with DateJS, however this library doesn't really work for me. Could you please help me with the solution?
0
votes
1answer
19 views
Excel and javascript date calculations differ
I am trying to do a date calculation in javascript that matches one in excel.
//Excel
=(EDATE(DATE(2000,6,1),60)-DATE(2012,1,20))
This gives a result of -2424
So I try to do the same calculation ...
0
votes
1answer
33 views
Using Datejs - Get the day of the week
I'm using http://www.datejs.com/.
I must be missing it, but is there a way I can pass it the day/month/year and have it tell me that it's a Friday or Monday or whatever?
0
votes
2answers
18 views
Pre-poppulating dates with Date.js in MonthName, ##, #### format
I have to pre-populate two calendars with values. I need it to be in the format of January 16, 2012. Currently, I am using Date.js (http://www.datejs.com/).
I currently have:
var e = Date.today(),
...
0
votes
1answer
42 views
dateJS is overwriting variables
I am just starting with dateJS and it seems like a great lib but I am obviously missing something (probably a stupid mistake) but in my function I need 3 dates: clickedDate, weekStart & weekEnd. ...
0
votes
1answer
60 views
Qunit crashing when used with Date.js
I'm using Qunit and Date.js to test some API functions that I wrote. Here's my code:
asyncTest("createDeal", 4, function () {
var okStartDate = Date.today().addDays(4),
notOkStartDatePast ...
0
votes
1answer
63 views
Javascript llegal radix 0 when converting Date object into time string (dd.mm.yyyy)
I am trying to convert a DateObject into readable format (dd.MM.yyyy) with DateJS.
I get an error:"llegal radix 0" when trying to convert it into a string.
Code:
<!DOCTYPE html PUBLIC ...
0
votes
2answers
95 views
datejs wont parse my date
I am trying to parse a FINNISH date eg. 13.03.1990. Javacript won't do this but I found DateJS that should be able to.
I implemented DateJS into my project but it still won't work!
Here is the code:
...
0
votes
2answers
114 views
Javascript write time in specific format
I'm using Javascript along with Date.js and need to translate string representations of times.
I'm starting with times in this format:
3:00am
2:30pm
11:00am
...and need to put them in this ...
0
votes
1answer
84 views
Add multiple TimeSpans together with datejs
I'm using the JavaScript library datejs and in particularly the TimeSpan class.
I've got it all working great for one TimeSpan. However I need it to add together the results of multiple TimeSpans on ...
0
votes
1answer
241 views
datejs TimeSpan and TimePeriod problems
I'm losing the plot with this one. I've added date.js and time.js to my project.
I then having the following test code:
1 var a = Date.today();
2 var b = Date.today().next().friday();
3 ...
0
votes
0answers
282 views
GWT Application crashes on Firefox 4 with JS exception
I have a GWT web application and I require to run it on Firefox 4. However, in certain point of the program the following exception occurs:
11:03:36.119 [ERROR] [com.app] Uncaught exception escaped
...
0
votes
0answers
101 views
datejs how to add an array of holidays to skip during workday calculations
Using datjs, if I was to calculate delivery dates of an item in a webshop, by just adding the delivery time (in workdays only, weekdays for me) to the current day. How will I be able to increase the ...
0
votes
1answer
228 views
Date.JS parse isBefore problem
Im using date.js to compare to dates that are written in user friendly string form(Sat, 1 July 2006 12:34:14). I use this code.
function is_new(lasttime, newtime){
lasttime = Date.parse(lastime);
...
0
votes
2answers
831 views
Jquery DateJs, is there validation for full date?
I just find out about the power of date js, And its great!!!
As I am a newbie I was wondering if there is any kind of general validitation for different types of full dates.
eg.
var d1 = ...
0
votes
1answer
75 views
How would I incorporate DATEJS into a form driven by PHP?
I'm creating a simple app (PHP & MYSQL) that collects information about an event, and I'd like to incorporate natural language processing in the date collection portion. I stumbled upon date.js ...
0
votes
1answer
90 views
How to correctly set the dateElementOrder in datejs to use partial dates
In datejs, if i set the dateElementOrder to the pt-PT localized version of "dmy" or "ymd" instead of "mdy" the following tests on the "Partial" test fixture start to fail:
1/2008; 1 2008; 1-2008; ...