Perhaps an other way to go:
Make a JavaScript Method:“next_record” with this code
nm_move(‘avanca’);
Make an ajax event “on change” related to your textbox and write the following code in the PHP editor of this event.
Image you want to check that there is content before go to the next record!?
If (!{<name of the textbox>} == “”){
sc_ajax_javascript(‘next_record’);
}
In the moment there is content and you TAB or ENTER (see your settings in the form) then it moves to the next record. (It loses the focus and the AJAX is fired)
If there is no content it does not move.
If you want to check something of the content then you should go the way to analyse the content with a script and a SQL like function.
That’s it…Have fun.
One question: Why do you want this? Not archiving the content in the database?
Regards Bert