Submit event not firing in Read-Only session

Andrew S

New Member
I have a read-only session that's just checking a database for certain values. It's not possible to set an OnSubmit event in Form Logic because it appears that the event isn't firing when the user submits the data.

The only workaround I've been able to come up with is to use a LostFocus event on the last input field but this is messy and I'd prefer to use OnSubmit.

Is this standard behavior or a bug?
 

Joseph Kraebel

Administrator
Staff member
Hi Andrew,

This is by design as a read-only session disables the submit action which is what triggers the on submit rules. Could you use an AfterScan event instead or maybe an OnClick rule if you're pressing a button to submit?
 
Top