Table or Action Submit

Hello, Im trying to watched for either when one of the two action buttons are clicked or when Approved is (Yes or No).

I found this for a form submitted:

// Change view_1 to the form view you want to listen to
$(document).on(‘knack-form-submit.view_1’, function(event, view, record) {
alert(‘Form submitted!’);
});

But how would I listen for a Table Action submit or record change for field_86

Hi @Tod - pretty sure you’re after an inline table edit update event on field_86?

Have a good read of the interface events and specifically the Record update event for inline Table Edits here Record Update (Inline Table Edit) in Knacks documentation.

That should get you started!