Uploaded image for project: 'Apache Flex'
  1. Apache Flex
  2. FLEX-26868

ContextMenu doesnt create MenuItems with Umlauts

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • Adobe Flex SDK 4.1 (Release)
    • None
    • mx: Application
    • None
    • Affected OS(s): Windows
      Affected OS(s): Windows XP
      Browser: Firefox 3.x
      Language Found: German

    Description

      Steps to reproduce:
      1.
      private function onCreationComplete() : void {
      var myMenu_cm:ContextMenu = new ContextMenu();
      myMenu_cm.hideBuiltInItems();
      var cm1:ContextMenuItem = new ContextMenuItem("Löschen");
      myMenu_cm.customItems.push(cm1);
      this.contextMenu = myMenu_cm;
      }

      2. Built
      3. run
      4. Open context menu

      Actual Results:

      The MenuItem "Löschen" doesnt exist.

      Expected Results:

      MenuItem "Löschen" on top of the list.

      Workaround (if any):

      private function onCreationComplete() : void {
      var myMenu_cm:ContextMenu = new ContextMenu();
      myMenu_cm.hideBuiltInItems();
      var cm1:ContextMenuItem = new ContextMenuItem("Loeschen");
      myMenu_cm.customItems.push(cm1);
      this.contextMenu = myMenu_cm;
      }

      EDIT:

      If you put an umlaut on first position everything is OK. Maybe it's the encoding.

      Attachments

        Activity

          People

            Unassigned Unassigned
            adobejira Adobe JIRA
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated: