Skip to main content
Answer

process flow and shortcut ctr +

  • December 11, 2020
  • 2 replies
  • 47 views

eurban
Captain
Forum|alt.badge.img+4

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

Best answer by Mark Jongeling

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

 

This topic has been closed for replies.

2 replies

Mark Jongeling
Administrator
Forum|alt.badge.img+23
  • Administrator
  • Answer
  • December 14, 2020

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

 


eurban
Captain
Forum|alt.badge.img+4
  • Author
  • Captain
  • December 14, 2020

thx Mark