-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Internet Explorer + Ember 1.11 + {{input type="time"}} = Error: Invalid argument #10458
Comments
IE doesn't support References: |
@rwjblue This is an issue with Ember which previously didn't exist. IE reverts to a text input: http://emberjs.jsbin.com/fivecaqava/1/edit?html,js,output |
Hmm. We are creating the DOM directly, and if the DOM being created is invalid on a given platform, I'm not sure what the path to fixing this would be. I'll reopen this so that others can chime in, but it might not be fixable without mega-hacks... @mixonic - I'd love your thoughts here... |
I apologize that I won't be able to look at this in detail before @QuantumKing if those inputs revert to a text box, how do you handle the I think there are several places in Ember that will explode if you use TL;DR - If we make these input formats fallback to text they will not On Sun, Feb 15, 2015, at 11:32 AM, Robert Jackson wrote:
Links: |
@mixonic I'm using a time input in some preview screens of a mobile app. The mobile app code is reused on my website to create the preview. In this particular case there's no need to process the value of the input in the preview; it serves only as a visual demonstration. It would suck to have to maintain two separate codebases, or to include a conditional for IE on the mobile end... |
Ran into this with IE9 and an input of type "email", where a degradation to "text" would be totally acceptable. I would totally understand if this just gets marked as "won't fix", but it would be nice to get something other than a cryptic error like this:
In the meantime, I'm working around it by binding the input type to a computed property with some jQuery and http://www.paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/. This obviously won't work for things like the date/time input, though. |
Same issue while using type="search". Failing jsbin: http://jsbin.com/wacihaqake/1/ |
The fallback to |
@blimmer We cannot both fall back to text (by setting |
@mixonic Hi Matthew, this is still throwing an error for input type "tel" or "number" in IE9 it seems for Ember 1.11.3. Was this fixed in the 1.11.x branch? We are stuck with 1.11 and require IE9 support, so it would be nice to get this patched in that branch as well. |
@adambuczynski - We do not backport non-security bug fixes to all affected versions. The fix for this was included from 1.12 forward. |
Cheers @rwjblue , thanks for the prompt reply. I will see if I can convince them to upgrade :) |
http://emberjs.jsbin.com/wikapibipa/1/edit?html,js,output
The text was updated successfully, but these errors were encountered: