Code Monkey home page Code Monkey logo

dyndatetime's People

Watchers

 avatar

dyndatetime's Issues

Date format does not except changes?

What steps will reproduce the problem?
1. Editing Calendar._TT["DEF_DATE_FORMAT"]

What is the expected output? What do you see instead?
I changed Calendar._TT["DEF_DATE_FORMAT"] to %Y-%d-%m, but it still returns 
the dateformat as %Y/%d/%m, no matter what I make of it

What version of the product are you using? On what operating system?
0.2


Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 14 Feb 2009 at 7:18

New Japanese translations

Hello!

This plugin is very useful and what I was looking for.
But Japanese language file seems to be broken.
So I re-tralslate and made new file using such as \ue565 unicode 
notational system. This can avoid the brakage of multibyte character.
I release this file public domain. Anyone can use this file for free but 
no warranty.

Thank you.

Original issue reported on code.google.com by [email protected] on 13 Feb 2009 at 9:29

Attachments:

dyndatetime not showing on google chrome 5.0.375.99 (51029) Ubuntu 10.04

What steps will reproduce the problem?
1. i open the example link ( 
http://www.mechanicalmarksy.com/hosted/toolman/dyndatetime/example.html ) in 
google chrome 5.0.375.99 (51029) Ubuntu 10.04
2. click the textbox
3. nothing appear

What is the expected output? What do you see instead?
the calendar should be appear, isn't it ?
i take a look at the example of dynarch ( 
http://www.dynarch.com/static/jscalendar-1.0/index.html ) and viola.. the 
calendar appear in google chrome...

What version of the product are you using? On what operating system?
0.2. Ubuntu 10.04. Google Chrome 5.0.375.99 (51029)

Please provide any additional information below.
Works fine in firefox and opera for linux. Any idea how to fix ?

Original issue reported on code.google.com by rizky.tahara on 19 Aug 2010 at 4:13

Calendar Box is big till the end of the page

I'm trying to use this date time picker.
It's OK when used in a blank page, but in my rich web page I can see a big box 
that is longer till the end of the page.
It's the same result in IE8 and Firefox, how I can fix this?

I've read another issue referring to the fact that is not possible to use the 
alignment, I already followed this to solve position.
Thank you
Max

Original issue reported on code.google.com by [email protected] on 23 Aug 2010 at 5:25

language "calendar-fr.js" problem

Hello,

At line 43, there is a mistake.

http://code.google.com/p/dyndatetime/source/browse/trunk/dyndatetime/lang/calend
ar-fr.js#43

The value should be "Mer" instead of "Mar".

Original issue reported on code.google.com by [email protected] on 3 Jun 2011 at 11:39

Time must be set before date or time wont set right

What steps will reproduce the problem?
1. clicking any date before u select the time
2. will not update  time if date selected before time
3.

What is the expected output? What do you see instead?
expected out put would be the time, date as i selected 
but doesnt unless i select the time, then date if i select date then time, the 
time wont update to whats been selected


What version of the product are you using? On what operating system?
0.2 on win7 IE

Please provide any additional information below.
email me at [email protected] if you have a fix for this please


Original issue reported on code.google.com by [email protected] on 7 Mar 2011 at 9:12

problem of placement with IE8

What steps will reproduce the problem?
1. use IE8
2. Launch the calendar

What is the expected output? What do you see instead?

The calendar is supposed to be placed just under the button or the text
input, but it's largely at the top of it.

no problem with FF

cheers

Original issue reported on code.google.com by [email protected] on 7 Dec 2009 at 5:18

Adding date format option Month without leading zero's (1 to 12)

I couldnt find the DateFormat option for formatting the date to output the
number of the month without a leading zero... To add that format option I
replaced these lines of code to jquery.dynDateTime.js (version 0.2):

case "%m":

replaced with:
case "%F":
case "%m":


s["%m"] = (m < 9) ? ("0" + (1+m)) : (1+m); // month, range 01 to 12

replaced with:
s["%F"] = m; // month, range 1 to 12
s["%m"] = (m < 9) ? ("0" + (1+m)) : (1+m); // month, range 01 to 12

(yes, the last line is the same as the first line... This is so you know
where to insert the extra code...)


I hope I made myself clear and made a little contribution to the plugin.

Thomas

Original issue reported on code.google.com by [email protected] on 18 Mar 2009 at 2:27

Problem with weeknumbers

The weeknumbers are not correct.
Check december 2009: dyndatetime has 52 weeks instead of 53 weeks!

Original issue reported on code.google.com by [email protected] on 1 Feb 2010 at 10:49

onLoad

Hi! May you add to your plugin property onLoad (like onSelect or onClose)?
Which will execute function after the calendar is appear. I need change
z-index and without this function I can't do it.

P.S.
Thanks for your plugin! I use it since it was The DHTML Calendar :) I think
that is the greatest calendar plugin!

Original issue reported on code.google.com by [email protected] on 14 Apr 2010 at 3:02

With out mouse need to change the time value.

What steps will reproduce the problem?
1. On Click on the time Box not able to change the value using key board 
2.
3.

What is the expected output? What do you see instead?
With out mouse can't we change the time value.

What version of the product are you using? On what operating system?
jquery.dynDateTime-0.2

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 30 Jul 2010 at 5:57

Initial Date not used

What steps will reproduce the problem?
1. Simply create a calendar control with a date not set to default (use
date option), and you'll see the date is simply ignored.

What is the expected output? What do you see instead?
to use the date provided.

What version of the product are you using? On what operating system?


Please provide any additional information below.
I fixed the source code by changing:

                if (dateEl)
                    opts.date = Date.parseDate(dateEl.value || dateEl.innerHTML, dateFmt);

to:

                if (dateEl) {
                    var datevalue = Date.parse(dateEl.value || dateEl.innerHTML, dateFmt);
                    if (datevalue != NaN) {
                        opts.date = datevalue;
                    }
                }

Original issue reported on code.google.com by [email protected] on 5 Mar 2009 at 9:27

How to set Current Date while Calendar loads?

What steps will reproduce the problem?
1. While loading calendar selected date is displaying as February 4, 2031.


What is the expected output? What do you see instead?
 -  I want to set default date as current date while Calendar is loading.

On what operating system?

Windows 8 




Original issue reported on code.google.com by [email protected] on 25 Aug 2014 at 8:35

Close calendar on pressing Esc

I'm not sure if this is an issue, or more a behaviour that I'd like to 
see. 
Basically I have the calendar appearing when I focus on a field, and if I 
press escape I'd like the calendar to close.
When it doesn't, the user can use the keyboard to move to another field on 
the screen and yet the calendar is still visible. If another date field is 
focused on, then 2 calendars are on the screen, etc.
Is there an easy way to make the calendar close upon hitting the esc key 
on the keyboard?

Thanks,

Jo

Original issue reported on code.google.com by [email protected] on 26 Aug 2009 at 11:21

Time in dropdown

I'd like to request an enhancement. Make an option to change the time selector 
from click or drag or 
drop down boxes. Click and drag is confusing to most users.


Original issue reported on code.google.com by [email protected] on 7 May 2010 at 1:23

Time shown as NaN

What steps will reproduce the problem?
1. Set the ifFormat to %Y%m%d %H:%M
2. Pick a date/time
3. Then press the "picker"-button again and the time is shown as NaN

What version of the product are you using? On what operating system?
0.2



Original issue reported on code.google.com by [email protected] on 24 Apr 2009 at 11:43

Error when click on date

I've got the error in Mozilla Firefox 3.0.8
Firebug console says:

too much recursion
(1991 out of range 296)

in IE7 next error:

Stack overflow at line: 56012968

PS! JQ 1.3.2

Original issue reported on code.google.com by [email protected] on 1 Apr 2009 at 10:30

selected day bug!

it has a strange bug, day selected stays selected even if you move to the
next or previous month ... How to solve this bug? 


Original issue reported on code.google.com by [email protected] on 19 Feb 2010 at 2:31

Init time to 00:00 if input field is empty

What steps will reproduce the problem?
1. Show dynDateTime with time

What is the expected output? What do you see instead?
I ses current time, but I want 00:00.

What version of the product are you using?
0.2


Original issue reported on code.google.com by [email protected] on 8 Jun 2009 at 6:30

Different date options in wiki

Hi

On the wiki, there are no examples how to use the "date:" property. 

I have 2 dates, start and end and I need to set the start date to 7 days back 
from today. Any help will be greatly appreciated...

Original issue reported on code.google.com by [email protected] on 20 Jun 2011 at 7:06

Problem with dateStatusFunc

What steps will reproduce the problem?
1. Given two input text (start time and end time) create two related 
calendars (end date should be after start date) 
2. Select start date after "Today"
3. Open end date calendar and you'll find dates before start date disabled
4. Try to select an end date ..... 

No other days of the same month can be selected. The calendar is not closed 
and the input is not updated with the selected date.

Attached you can find a simple html file.



Original issue reported on code.google.com by [email protected] on 2 Oct 2009 at 1:25

Attachments:

Date class extensions

The original dynarch code adds extra methods on the Date prototype.  They
are benign, but has the possibility to interfere with others code.

Refactor these out.

Original issue reported on code.google.com by thetoolman on 10 Dec 2008 at 3:53

Have click on "Today" set to current Time if showsTime is TRUE

What steps will reproduce the problem?
1. Click on "Today" feature in calendar
2. Date is set to current, but time is not.

What is the expected output? What do you see instead?
Would expect to see Date AND Time set if showsTime is TRUE

What version of the product are you using? On what operating system?
1.0 All

Please provide any additional information below.
Just a nice feature enhancement or a setting I'm not finding in documentation. 
:)

Original issue reported on code.google.com by [email protected] on 6 Dec 2010 at 4:14

IE7: 'popup on long form' problem

What steps will reproduce the problem?
1. In IE7 with long forms and thus a 'scrolled page' the calenderpopup is 
positioned wrong when the page is scrolled down.
2. see: http://sourceforge.net/tracker/index.php?
func=detail&aid=2036871&group_id=75569&atid=544285 for the bug in the 
calendar.js of dynarch.com and a possible (not working!) resolution.
3. I made the neccesary mod's (see attachment)

What is the expected output? What do you see instead?
The calenderpopup should be positioned to be always in view.

What version of the product are you using? On what operating system?
0.2 on all

Please provide any additional information below.
I made the proper adjustmants thanks to 'nobody' (see 2.).
I attached the code (jquery.dynDateTime02a.js)


Original issue reported on code.google.com by [email protected] on 1 Jan 2009 at 7:01

Attachments:

Incorrect Documentation in Wiki

What steps will reproduce the problem?
1. Got http://code.google.com/p/dyndatetime/wiki/Home.
2. See under "Usage pattern."
3. Observe code that configures the calendar with options.


What is the expected output? What do you see instead?
The code should say:

jQuery( "input.dateField" ).dynDateTime({
  showsTime: true,
  ifFormat: "%Y/%m/%d-%H:%M",
  button: ".next()" //next sibling to input field
});

However, it says:

jQuery( "input.dateField" ).dynDateTime(
  showsTime: true,
  ifFormat: "%Y/%m/%d-%H:%M",
  button: ".next()" //next sibling to input field
);

It is missing the curly braces.


What version of the product are you using? On what operating system?
dynDateTime 0.2

Please provide any additional information below.



Original issue reported on code.google.com by [email protected] on 24 Jun 2009 at 4:30

Calendar not rendering correctly (international languages)

What steps will reproduce the problem?
1. Choose lang/calendar-nl.js for instance

What is the expected output? What do you see instead?
A not correctly rendered calendar (no dates to be seen)

What version of the product are you using? On what operating system?
0.2 on all

Please provide any additional information below.
The language files (accept calendar-en.js and calendar-es.js) lacks the 
following line:

Calendar._FD = 0; //or 1, 2.... 

If the above line is entered the calendar is working as expected!


Original issue reported on code.google.com by [email protected] on 1 Jan 2009 at 7:16

Uncaught illegal access error in google chrome and chromium

What steps will reproduce the problem?
1. Open calendar
2. Click "next month" several times
3. You will see empty rectangle and error in debug console

Bug reproduced in windows and linux using version 0.2 of dynDateTime.

This error in 1304 line of uncompressed code.
This line date.setDate(-day1);
If day1 equals 0 (zero), this code

Next code fixes problem: 

if( day1 != 0 ) {
    day1 = -1*day1;
}
date.setDate(day1);


Original issue reported on code.google.com by [email protected] on 3 Jun 2010 at 8:53

Remove Global Variables

The original dynarch code, though clean, leaves a few global variables in
global scope.  

Refactor code to not do this.

Original issue reported on code.google.com by thetoolman on 10 Dec 2008 at 3:52

not a issue more of needing help

i was wondering i anyone knows the code to make it display the selected date 
when u add multiple calendar seletors.
heres what i have... im sure has something todo with the datadiplay: setting i 
just cant figure it out. thanks for any help

            <script type="text/javascript">
                    jQuery(document).ready(function() {

                jQuery("#multi input").dynDateTime({                
                    showsTime: true,
            ifFormat: "%Y-%m-%d %H:%M:%S",
                daFormat: "%l:%M %p, %e %m,  %Y",
                align: "TL",
                electric: false,                    singleClick: false,
                            displayArea: ".siblings(.dtcDisplayArea)",
            button: ".next()" //next sibling
                        }); 

                    });
                </script>
                <div id="multi">
The selected date is <span class="dtcDisplayArea"></span> <br/>
        <input type="text" name="dateA"/>
<button type="button"><img src="../../images/calendar.png" /></button>
                    <br/>
    The selected date is <span class="dtcDisplayArea"></span> <br/>
            <input type="text" name="dateB"/>
<button type="button"><img src="../../images/calendar.png" /></button>

Original issue reported on code.google.com by [email protected] on 7 Mar 2011 at 8:28

Language packs problem - "undefined" instead of week day names and no digits

What steps will reproduce the problem?
1. create new html-file, with dynDateTime included
...
<script type="text/javascript" src="js/jquery-min.js"></script>
<script type="text/javascript" src="js/jquery.dynDateTime.js"></script>
<script type="text/javascript" src="js/calendar-ru.js"></script>
<link rel="stylesheet" type="text/css" href="css/calendar-system.css" />
...

2. Apply dynDateTime to element

3. Click on element in browser


What is the expected output? 
Just calendar show.

What do you see instead?
Calendar without day names and digits.
I'm test "ru" and "fr" lang.packs.

What version of the product are you using? On what operating system?
v.0.2, Windows XP

Please provide any additional information below.
SOLUTION!!!!!!!!
Addind

//First day of the week. "0" means display Sunday first, "1" means display
//Monday first, etc.
Calendar._FD = 1;

to locale files "calendar-ru.js", "calendar-fr.js" ect.

Original issue reported on code.google.com by [email protected] on 5 Mar 2010 at 7:00

dialog hang when click next year in google chrome

What steps will reproduce the problem?
1. when click >> button for next year in google chrom, dialog hang.

What version of the product are you using? On what operating system?
- dynDateTime 0.2, lastest google chrome

Fixed code.

at line 1304:
date.setDate(-day1);

replace with:
try { date.setDate(-day1); } catch(e) {};



Original issue reported on code.google.com by [email protected] on 22 Jun 2010 at 5:37

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.