Page 1 of 1

Hide or Disable top bar

Posted: Tue Oct 29, 2019 9:04 am
by justinopsky
Hi is possible to hide or disable the search options of top bar of Inbox folder depending the type of user or disable for all users?
Capturar.PNG
Capturar.PNG (9.99 KiB) Viewed 7139 times
Thanks

Re: Hide or Disable top bar

Posted: Wed Oct 30, 2019 12:35 am
by programerboy
Hi,
You must change core source for do this and also create customize permission for handle it.

Re: Hide or Disable top bar

Posted: Wed Oct 30, 2019 4:29 am
by justinopsky
Thanks, but where can i change the code?

Re: Hide or Disable top bar

Posted: Sat Nov 02, 2019 4:39 am
by springhighdigital
you can always experiment with modifying the processmaker css

edit
/workflow/engine/skinEngine/neoclassic/css/xtheme-grey.css

add this to the top of the css file
Code: Select all
.x-toolbar {
  visibility: hidden;
}

Re: Hide or Disable top bar

Posted: Sun Nov 03, 2019 5:04 am
by springhigh
i didn't read your question properly, my css applies to all users

Re: Hide or Disable top bar

Posted: Mon Nov 04, 2019 6:51 pm
by justinopsky
Thanks
For now i will hide for all users,
but can you tell me what file i need to change to specific users ?

The main problem is i have several cases categories, and a specific type of user only can see one case category, but when select the combo Category is displayed all categories.

Re: Hide or Disable top bar

Posted: Tue Nov 05, 2019 6:53 am
by justinopsky
To hide the dropdowns box's only i add this code to CSS
.x-toolbar-right {
visibility: hidden;
}

because if i use .x-toolbar hide to all bar.
Thanks