I'm having same issue. It's only when creating tags from the page itself it doesn't work ("Type to add tags..." + enter). If I right click and create from the tags-contanier it works fine.
Chrome
Adding the tag "Testå": /umbraco/api/uTagsyApi/GetAndEnsureNodeIdsForTags/?currentNodeId=2834&tags=Test%C3%A5
To test it: /umbraco/api/uTagsyApi/GetTagNames/?nodeIds=5098 "Testå"
Same request from IE returns correct value.
Internet Explorer 11 Create same tag "Testå": /umbraco/api/uTagsyApi/GetAndEnsureNodeIdsForTags/?currentNodeId=2379&tags= <-- NOTHING HERE
To test it: /umbraco/api/uTagsyApi/GetTagNames/?nodeIds=5097 "Test� [non UTF-8 character here]". If I go back to Chrome and make the same request it's still a diamond so it really is saved that way.
To verify I added the tag "test123" in IE: /umbraco/api/uTagsyApi/GetAndEnsureNodeIdsForTags/?currentNodeId=2379&tags=test123
If I debug angular *before I submit/save* and look at "currentTags" this is what I get (both IE and Chrome shows correct): angular.element($0).scope() [ 0: "test123", 1: "Testå", length: 2 ]
Anyone struggled with the same problem and maybe found any solution? We faced this bug using cyrylic language in tags. When editors input the tag it looks good and is properly stored in doctype, but when we want to re-use this tag it's returning question marks instead of chars..
Encoding problems with tag names
When adding a tag in Internet Explorer 11, chars like åäö in tag name will be broken. (after saving the page)
(Umbraco 7.1.1)
Do you know what could be causing this?
I'm having same issue. It's only when creating tags from the page itself it doesn't work ("Type to add tags..." + enter).
If I right click and create from the tags-contanier it works fine.
Chrome
Adding the tag "Testå":
/umbraco/api/uTagsyApi/GetAndEnsureNodeIdsForTags/?currentNodeId=2834&tags=Test%C3%A5
To test it:
/umbraco/api/uTagsyApi/GetTagNames/?nodeIds=5098
"Testå"
Same request from IE returns correct value.
Internet Explorer 11
Create same tag "Testå":
/umbraco/api/uTagsyApi/GetAndEnsureNodeIdsForTags/?currentNodeId=2379&tags= <-- NOTHING HERE
To test it:
/umbraco/api/uTagsyApi/GetTagNames/?nodeIds=5097
"Test� [non UTF-8 character here]". If I go back to Chrome and make the same request it's still a diamond so it really is saved that way.
To verify I added the tag "test123" in IE:
/umbraco/api/uTagsyApi/GetAndEnsureNodeIdsForTags/?currentNodeId=2379&tags=test123
If I debug angular *before I submit/save* and look at "currentTags" this is what I get (both IE and Chrome shows correct):
angular.element($0).scope()
[ 0: "test123", 1: "Testå", length: 2 ]
Anyone struggled with the same problem and maybe found any solution? We faced this bug using cyrylic language in tags. When editors input the tag it looks good and is properly stored in doctype, but when we want to re-use this tag it's returning question marks instead of chars..
is working on a reply...