[CLOSED] Key events textboxes problem

  1. #1

    [CLOSED] Key events textboxes problem

    *Editing topic: my mistake*

    Hi,

    I need block some characters, but codes to do things like

        <input type="text" onkeydown="return false" />
    in html are not working both in IE and FF as well

     <KeyDown Handler="return false;" />


    thank you
    Last edited by Daniil; Aug 16, 2012 at 5:17 PM. Reason: [CLOSED]
  2. #2
    Hi,

    Quote Originally Posted by mcfromero View Post

    I need block some characters, but codes to do things like

        <input type="text" onkeydown="return false" />
    in html are not working both in IE and FF as well

     <KeyDown Handler="return false;" />
    Please use
    <KeyDown Handler="e.stopEvent();" />
  3. #3
    Worked, thank you.

    But I have a new issue..
    How can I get the code of key?

    In html I had "event.keyCode" or "event.which" but I cannot get "event" in FF.

    Can you help me?
  4. #4

Similar Threads

  1. Replies: 5
    Last Post: Jan 04, 2011, 8:09 PM
  2. [CLOSED] Problem with events order
    By jeybonnet in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Nov 29, 2010, 2:05 PM
  3. Replies: 7
    Last Post: Feb 13, 2009, 3:27 PM
  4. Replies: 5
    Last Post: Oct 08, 2008, 12:46 PM
  5. Replies: 3
    Last Post: Mar 28, 2008, 3:57 PM

Posting Permissions