Solved

Quick Action Bar in custom standard mobile screen

  • 31 August 2023
  • 2 replies
  • 41 views

Userlevel 2
Badge +7

Hi Experts!

 

Currently in FSM Mobile Client. The Debrief Overview screen has an action status bar. 

How do i create a custom standard screen and add that action status bar in the custom screen?

 

 

icon

Best answer by BrianG 1 September 2023, 14:41

View original

2 replies

Badge +3

Hi,

One way is to make the status bar icons visible explicitly. You can use the following methods in the ‘Refresh’ client script for the custom screen:

setControlVisibility(‘QUICK_ACTIONBAR_STATUS’,true);

setControlVisibility(‘QUICK_ACTIONBAR_ATTACHMENT’,true);

setControlVisibility(‘QUICK_ACTIONBAR_NOTE’,true);

 

Create a client script with these 3 lines and add the script to the ‘Refresh’ event of the custom screen. 

Userlevel 3
Badge +6

Hi @StejonatL ,

I’ve been away from FSM Mobile for awhile, so working off memory.  The Quick Action bar is a hard-coded feature.  All the buttons are only functional on the Overview and Notes screens.  The Status button is functional on coded or codeless screens in the Debrief Workflow.  The scripting that @SuryaSen mentioned works for hiding or showing the buttons, but there is no way to add quick action buttons to custom screens through configuration.  That would require significant code customization.

Reply