-
Notifications
You must be signed in to change notification settings - Fork 27.4k
input type date problem #6630
Comments
Could you please post a sample with Plunker or jsFiddle? |
Please check http://plnkr.co/edit/7NXGsS1RZIBLmcEpwfJ8?p=preview Thanks On Mon, Mar 10, 2014 at 5:44 PM, Sekib Omazic notifications@github.comwrote:
|
Duplicate of #1650 ? |
Duplicate of #1650 ????
|
1.3 introduced support for input type=date via directive. the model for a input type=date must now always be a Date() object: http://docs.angularjs.org/api/ng/input/input%5Bdate%5D This is actually a breaking change ... What's also weird is that you can enter nonsense dates, and this gets propagated to the modek: http://docs.angularjs.org/api/ng/input/input%5Bdate%5D enter something like 2014-33-22, and see what happens |
This is correct according to the Date specification in javascript, IIRC --- EG if you say "the 14th month of this year", the engine should translate that into the second month of next year. |
That's the same then with inpu type=email. Technically correct, but rather unintuitive |
I think it's probably pretty useful, eg if you know something is going to be 14 weeks from now, and you don't want to figure out exactly what that will translate to on a real calendar, you can just do the simple arithmetic in your head and the engine will take care of it for you. I don't really see that as problematic, but maybe @Blesh or @tbosch have something to say about it |
@caitp If you now something is going to be 14 weeks from now then something like "new Date().plusWeeks(14)" would be intuitive. This is what JodaTime library does in Java. |
The original implementation from my PR allowed for either a Date or an ISO String, but would always put a Date object back to the model. But it was decided that it wasn't intuitive to do this. There is an argument for "string in string out" I suppose. But that could get crazy if the desire was to support many different date input formats (e.g. 12/23/2014 or Dec 23, 2014) and then output to the same. It's doable, especially with the date service I'm working on... but it might be a lot of extra code into the code base for not a lot of benefit.
This is because in some browsers I hope this information helps. |
@SekibOmazic, you can't really do this from a form control, that doesn't make any sense. it would be a terrible UX to force users to go into the script console and do this manually ;) |
@Blesh I think you should retro-actively put this change as breaking into the changelog, since it actually breaks any date field that uses ng-model without a Date() object. I guess in most cases the input is some sort of datepicker anyway, but in cases where people use the blank date field, it's very probable it doesn't use Date() in the model. |
@Narretz - I'm actually a little shocked it wasn't listed as a breaking change, because I know it was discussed to be such, which is one of a few reasons why it was put in 1.3 rather than 1.2. ... But I'm not a team member, so I'll leave the updating of the changelog to them. |
@caitp Entering something like '2014-33-22' just doesn't feel right. The JavaScript would then "guess" what I really mean? The answer would be "33 months and 22 days after January 1, 2014". I don't know if this is allowed: '2014--33--22' ("33 months and 22 days before January 1, 2014")? @Blesh Nice work. |
@SekibOmazic you probably want to take that up with Brendan Eich or something, but yeah that's what the date object will do, and I think this is ok |
it might be something that could be done with a change to the Regex that controls it... it could get weird though... var DATE_REGEXP = /^(\d{4})-(((01|03|05|07|08|10|12)-(0[1-9]|[12][0-9]|3[01]))|((04|06|09|11)-(0[1-9]|[12][0-9]|30))|((02)-(0[1-9]|[12][0-9])))$/; I pulled this out of my butt, so I make no guarantees that it will work. ... and that's not going to account for leap years... (I'm kidding about this idea) |
@Blesh The changelog.js script seems to be able to parse Breaking changes if they are put in the commit message. But I'm not blaming you, it was simply an oversight. Just can't hurt to put it in for those that upgrade from 1.2 to fresh 1.3 builds. You can write a pull request that changes the changelog.md (I'd do it myself, but since you wrote the commit ...) In any case, thanks for your work! |
Yes, you are right, it was an oversight, sorry. Added it as breaking change to the changelog. Can we close this issue then? |
@tbosch yes |
i try 1.3 beta n found when using input type "date" ng-module not working...
The text was updated successfully, but these errors were encountered: