Questions tagged [anytime]

The Any+Time™ JavaScript Library includes a highly-customizable, jQuery-compatible datepicker/ timepicker (calendar/ clock widget) and a powerful Date/String parse/format utility.

The Any+Time™ JavaScript Library includes a highly-customizable, jQuery-compatible datepicker/ timepicker (calendar/ clock widget) and a powerful Date/String parse/format utility.

54 questions
1
vote
1 answer

Error with date range in AnyTime date picker

I've managed to cobble together some code for a data range selector in AnyTime: $(document).ready(function() { $("#date_start").AnyTime_noPicker().removeAttr("disabled").AnyTime_picker({format:"%Y-%m-%d",earliest:new Date(2000,0,1,0,0,0)}); …
Wayne Smallman
  • 1,690
  • 11
  • 34
  • 56
1
vote
1 answer

Any+Time: i18N of day and month abbreviations from moment.js

I'm using the time / date picker Any+Time (jQuery-Plug-In). Additionally moment.js for time manipulation. Instead of moment.js the Any+Time plug-in does not support different languages directly. For moment.js there additional files to support other…
Marvin Emil Brach
  • 3,984
  • 1
  • 32
  • 62
1
vote
0 answers

AnyTime date picker - bind to event (time selected)

How to bind handler for event occured when time changed in tied input box. .change() for input box occuring many times when anytime picker dialog opening
f0rza
  • 480
  • 3
  • 17
1
vote
1 answer

jQuery lib causes an error until refresh

In my form (form links are below, currently talking about form1) I have jquery.js included and it causes an error. Error is that it does not load doAjax and getIP functions which I have them in a js file called func - you may find it in source code…
makalele
  • 79
  • 1
  • 2
  • 10
0
votes
1 answer

AnyTime date picker close with date selection

The Any Time date picker doesn't close when the user clicks a date with the mouse, only when they hit enter. How can I make it so it closes with a mouse click? I found this code in anytime.js: if ( this.oDiv && this.oDiv.is(':visible') ) …
user617123
  • 463
  • 2
  • 9
  • 26
0
votes
1 answer

Transform timestamp with keeping milliseconds

I have a dataframe with timestamps, which look like this: 2020-06-28T16:45:04.3602059+03:00 I use anytime packages function anytime to transform its format: df <- df %>% dplyr::mutate( timestamp = anytime::anytime(timestamp)) So after…
french_fries
  • 1,149
  • 6
  • 22
0
votes
1 answer

Converting a column of numbers to a date time

I'm trying to convert a table column (aifstime_local) containing dates which are currently stored as numbers into datetime. see below for table. aifstime_utc aifstime_local lat lon apparent_t cloud cloud_base_m 1 20190224230000…
Hugoo
  • 11
  • 3
0
votes
3 answers

How to create a time range using AnyTime js?

I have seen the example of date range in AnyTime js manual but is there a way to create a time range using AnyTime js? Thank you.
sarah
  • 103
  • 2
  • 12
0
votes
1 answer

I am trying pass the value from Any+Time DatePicker/TimePicker to asp.net code behind

I am using Any+Time DatePicker/TimePicker to allow my users to select a date and time in vb.net. But I am unable to retrieve the values in code behind. Can someone please point me in the right direction? Any+Time URL I am using the plugin like…
billy_blanks
  • 105
  • 1
  • 3
  • 12
0
votes
1 answer

R- How to transform a date from an english format (Month-Day-Year) to another format?

I would like to transform January 2, 2018 at 02:55PM to datetime format . I use the package anytime. I added a new format addFormats("%B %d, %Y at %I:%M%p") but it doesn't work. anytime(data$Date) returns "2018-01-02 CET". I lose the hour..
0
votes
2 answers

Which Improvements can be done to AnyTime Weighted A* Algorithm?

Firstly , For those of your who dont know - Anytime Algorithm is an algorithm that get as input the amount of time it can run and it should give the best solution it can on that time. Weighted A* is the same as A* with one diffrence in the f…
RanZilber
  • 1,840
  • 4
  • 31
  • 42
0
votes
3 answers

anytime producing NA dates only for dates before the 10th

I am attempting to read dates from a CSV. Sample: Date User 1 User 2 8/1/2019 IN IN 8/2/2019 IN Out 8/3/2019 IN IN 8/4/2019 IN IN 8/5/2019 IN IN 8/6/2019 IN IN 8/7/2019 IN IN 8/8/2019 IN IN 8/9/2019 IN …
Gib999
  • 93
  • 1
  • 8
0
votes
3 answers

Can't get Any+Time date picker working

Hey I tried to use Any+Time date picker, written in java script with the tutorial offered at its download website (http://www.ama3.com/anytime/) but somehow can't get it to work. Right now, it displays nothing more than plain text box. Can someone…
SerotoninChase
  • 424
  • 11
  • 28
0
votes
2 answers

events in AnyTime date picker

I want to fire a function when user clicks on any button under "Day Of the Month". I found out the code for "Hour". But couldn't find the one for month. The original problem - I am updating an HTML span with the values selected in the AnyTime…
kapeels
  • 1,692
  • 4
  • 30
  • 52
0
votes
1 answer

mutate_at column names error

I'm trying to apply the anytime() function from the anytime package in a dplyr chain to all columns ending with Date I'm however getting this error. Error: Unsupported Type when I use invoicePayment <- head(raw.InvoicePayment) %>% …
Joseph Noirre
  • 387
  • 4
  • 20