From 6529f4128e3037461394f78a0604634075cd867a Mon Sep 17 00:00:00 2001 From: iwhp Date: Mon, 8 Jun 2015 19:02:03 +0200 Subject: [PATCH] docs(guide/Migrating from Previous Versions): Add an issue with HTML select tag and numeric values --- docs/content/guide/migration.ngdoc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/content/guide/migration.ngdoc b/docs/content/guide/migration.ngdoc index 7edb96525d86..5881d6a67e95 100644 --- a/docs/content/guide/migration.ngdoc +++ b/docs/content/guide/migration.ngdoc @@ -309,6 +309,21 @@ Now, instead of returning empty object/array, it returns unchanged input. +## HTML tag `select` + +### Numeric `option` values +In case your code is using something like this: + +and `vm.entity.OrderQuantity` is a numeric value, you have to fix the issue, since the provided value is not selected. + +For solutions see http://stackoverflow.com/questions/30582906 + + + # Migrating from 1.2 to 1.3