cancel
Showing results for 
Search instead for 
Did you mean: 

IRPT - Trigger an event after updating a text field

Former Member
0 Kudos

Can anyone show me how to trigger an UpdateEvent from an html input text field?

Where the onClick in the text field below, I would like it to be AfterUpdate or OnUpdate and my function. Is this possible?

<input type="text" name="tNetWeight" onClick="sendData()"/>

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You are almost there. Instead of a <b>onclick</b> event, try a <b>onchange</b> event.

There are several event handlers for common HTML elements. For a list of them, check out this link to <a href="http://www.w3schools.com/jsref/jsref_events.asp">w3schools.com</a>

Answers (0)