Question

How do you add a key down event with this text box?

@Html.TextBox("txtbx1", "", new {...} )
Was it helpful?

Solution

You could do something like the following:

@Html.TextBox("txtbx1", "", new { onkeydown="MyFunction();" } )

OTHER TIPS

Try it like this.

Call:

@Html.TextBoxFor(model => model.BoardSizeX, new { @onkeydown = "return Foo(event, $(this).val());"})

Function:

 function foo(event, currentValue) {
       console.log(event);
       console.log(currentValue);

       return true; 
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top