vote up 1 vote down star

How do I call a JavaScript function from a texbox that is generated by an MVC Helper. I want my textbox to call a function like this:

<input type="text" id="Ejemplo" onkeyup="SumaEjemplo()" />

I'm using:

<%= Html.TextBox("Ejemplo")%>

Where do I put it?

flag

3 Answers

vote up 2 vote down check

Use event binding

By using jQuery you could write this code in Javascript (either directly inside a <script> tag or in a separate script file that's loaded with the view:

$(function(){
    $("#Ejemplo").keyup(SumaEjemplo);
});

function SumaEjemplo(eventInstance){
    // handle onkeyup event
}

This way you'll be able to attach multiple events to the same control and is considered the proper way of doing this.

link|flag
thanks for the additional info. – hminaya Nov 5 at 0:43
Actually it's $("#Ejemplo").keyup(SumaEjemplo); without the "on" – hminaya Nov 19 at 14:46
you're right. changed it. – Robert Koritnik Nov 19 at 17:17
vote up 1 vote down

You could also use jQuery to automatically bind the event when the control is created. This is really only useful I guess when you want to create the controls within a javascript/jquery event.

link|flag
vote up 2 vote down
<%= Html.TextBox("Ejemplo",string.Empty,new{onkeyup="SumaEjemplo()"})%>
link|flag
thanks, works like a charm... – hminaya Nov 4 at 20:59
-1 because it doesn't allow multi-event binding. Griegs answer is much better. – Robert Koritnik Nov 5 at 0:13
Wrong, it allows multi-event binding: Html.TextBox("Ejemplo",string.Empty,new{onkeyup="SumaEjemplo1();SumaEjemplo2();"})%> – Gregoire Nov 5 at 14:06
And, with my method no need to rebind the events after a partial update – Gregoire Nov 5 at 14:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.