Solved

process flow and shortcut ctr +

  • 11 December 2020
  • 2 replies
  • 36 views

Userlevel 2
Badge +4

When I continually adding lines white the shortcut crtl +  , the follow up steps in the process flow are skipped.
What do I wrong ?  

icon

Best answer by Mark Jongeling 14 December 2020, 08:05

View original

This topic has been closed for comments

2 replies

Userlevel 7
Badge +23

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

 

Userlevel 2
Badge +4

thx Mark