I have query about Nav 2016 Event Trigger

In Nav 2009 My form have OnBeforeInput() , OnChangeInput() , OnAfterInput() Triggers for Item Field, After selecting Item OnValidate() Trigger not running … On these triggers (OnBeforeInput() , OnChangeInput() , OnAfterInput()) have some code… How I Migrate these 3 events in Nav 2016.

Please Give me Solution For these… Thnx.

Hi

OnBeforeInput trigger only determines whether the control is editable. You can replicate the same with the help of a variable in OnOpenPage trigger and placing it in Editable property of the textbox.

I guess your code in OnInputChange and OnAfterInput does some validations. If so, you should be able to do the same in OnValidate trigger.