no "enter" key on virtual keyboard

Welcome to our brand new Clickteam Community Hub! We hope you will enjoy using the new features, which we will be further expanding in the coming months.

A few features including Passport are unavailable initially whilst we monitor stability of the new platform, we hope to bring these online very soon. Small issues will crop up following the import from our old system, including some message formatting, translation accuracy and other things.

Thank you for your patience whilst we've worked on this and we look forward to more exciting community developments soon!

Clickteam.
  • Hi,
    I have a problem with edit box. The user of my software must entry his name with the virtual keyboard. But there is no "enter" key on the virtual keyboard to validate the entry. Just a key "Go on" or "go" (in french "Aller vers"). And when i click on this key, the edit box have always the focus. How can i detect this key in fusion ?
    Thanks

    nota :i try to negate all the others keys but still don't detect the fact of click on the "go" key.

    [SIGPIC][/SIGPIC]Please login to see this link.

  • Hi MrNaif and thnk you for your response. the problem is that you will have 2 keyboards at the same time : the keyboard you made and the virtual keyboard of the phone ;)

    [SIGPIC][/SIGPIC]Please login to see this link.

  • Hello hello,

    Unfortunately, Android object don’t work in HTML.

    Somewhere in the webpage I add a input whith the id "unfocus".

    Code
    <input id="unfocus"></input>

    And I add a script for focus and unfocus the input "unfocus" when Enter key is pressed.

    Code
    document.onkeyup=function (e)
     {
      e=e || window.event;
      var code=e.keyCode || e.wihch;
      if (code == 13) {
       document.getElementById("unfocus").focus();
       document.getElementById("unfocus").blur(); 				
      }
     }

    Thanks Arthurh for his help.

  • There are some issues with the "Enter-Key" (the "Enter-Key-Event") in virtual android keyboards togheter with CT-HTML-Apps and CT-Flash-Apps (maybe in CT-Android-Apps and CT-IoS-Apps too).
    For example, typing characters (eg names, numbers) into the "Edit Object" works, but confirmation by the "Enter-Key" (the "Enter-Key-Event") seems to be not possible with some / all virtual android keyboards.
    There are some workarounds, for example, replacing the confirmation by the "Enter-Key" (the "Enter-Key-Event") with confirmation by a visual button.
    Because those workarounds are not the best solutions I recommend CT to solve this bug.

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!