When I continually adding lines white the shortcut crtl + , the follow up steps in the process flow are skipped.
What do I wrong ?
Hi eurban,
This functionality is working in the intended way. When continuously adding records by using the [Ctrl +] shortkey or hitting Add, the GUI will not execute the Process flow because the user is trying to successively enter in records. If the user would click Save or use [Ctrl Enter], the record would be saved and the Process flow will executed.
What you can do is write a Layout procedure that will disable the Add button when adding. The code should look a bit like this.
if @layout_mode = 0
begin
select @add_button_type = 1
end
Here when in Adding mode, the Add button will be disabled/non clickable. You can also choose to hide the button by giving @add_button_type the value: 2
Hope this helps!
Kind regards,
Mark Jongeling
thx Mark
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.