I think if you create a Layout procedure, assign it to the page and click ‘Generate’ on the Result-tab. It shows something like this:
-- 0 = enabled, 1 = disabled, 2 = hidden.
@add_button_type tinyint output,
@update_button_type tinyint output,
@delete_button_type tinyint output,
@confirm_button_type tinyint output,
@cancel_button_type tinyint output,
Go back to your code on the tab Templates and write when you want this to work.
So
if (@status = ‘Final’)
begin
set @update_button_type = 2
set @delete_button_type = 2
end
This should turn off the update and delete button if the @status is final.
Here some more info
However, turning of the refresh… That I do not know. My guess is… you can’t…
Hi,
This is not yet possible in the Universal GUI. Also to add, if you disable the Refresh button, data in that Grid could not be refreshed unless closing and reopening the screen. But considering the layout of your screen, it's probably not a problem.
Feel free to create a topic in the ideation section for this.
Kind regards,
Mark Jongeling