Solved

In Mobile UI is it possible to enforce the density setting?

  • 14 February 2023
  • 5 replies
  • 77 views

Userlevel 2
Badge +5

The mobile UI has option for density : compact and comfortable.

Currently by default its set to comfortable.

Is there a way to set it to compact by default?

I got the required information for Universal UI from , but not for mobile: 

 

icon

Best answer by Leroy Witteveen 14 February 2023, 14:06

View original

This topic has been closed for comments

5 replies

Userlevel 4
Badge +2

Hi Rucha,

I think what your looking for is the: spacingMode option. This can be configured in the config.json.

The allowed values are compact or comfortable.

Themes | Thinkwise Documentation (thinkwisesoftware.com)

 

Edit:

Apologies, I think you are looking for mobile and not for Universal. I missed that part of your post.

Userlevel 3
Badge +3

Hi @Rucha Naik,

Are you talking about the old Mobile GUI, which looks like this?:

 

Or are you talking about using the Universal GUI on Mobile, which would look like this?:

Kind regards,
Leroy Witteveen

Userlevel 2
Badge +5

Hi Leroy,

 

I am using the universal GUI in mobile : 
 

 

Userlevel 3
Badge +3

Hi @Rucha Naik,

Doesn't adding the following to config.json solve your problem?:

"spacingMode": "compact",

If the user already logged in before this change was applied, the default spacing mode (which would be comfortable for mobile) will be persisted already. This can be solved by clearing the cache in the login options. But every new user (that starts Universal for the first time) will definitely have compact mode after adding that to config.json.

Kind regards,
Leroy Witteveen

Userlevel 2
Badge +5

Thanks Leroy, this is working now!