Changer titre Portail Bonita

1
0
-1

Bonjour,

Je veux changer le titre du portail, je trouve pas ou il faut le changer dans le thème de Bonita,
pouvez-vous m'aider s'il vous plaît ?

Merci

2 answers

1
+1
-1
This one is the BEST answer!

You either need to do this:

1) download the source find the right HTML template change it, and recompile so it has your new name

Or

2) add a custom widget to every page/form

Delete everything in the template
Delete everything in the Controller and add the following code

function ($scope) {
   
    var newTitle = "my custom title";
    if (document.title != newTitle) {
        document.title = newTitle;
    }
   
}

which will give you a new title;

Tested and working!

regards
Seán

PS: As this reply answers your question, please mark as resolved.

Comments

Submitted by Sean McP on Sun, 03/19/2017 - 22:19

If you find the template for the newForm, you could also add the above custom widget to it so you don't have to do it every time (and sometimes forgetting :)

1
-1
-1

Bonjour,

Quel titre cherchez vous a modifier exactement? Le titre dans le navigateur web?

Il y a des informations ici qui expliquent comment modifier le Look & Feel du portail.

Aussi il est possible de creer une Living Application qui est completement customisable.

Lionel

Comments

Submitted by mameharzi on Fri, 03/17/2017 - 17:25

Oui le titre du navigateur web, il est par défaut : Bonita BPM Portal, dans la documentation (lien que vous veniez me le transmettre) y a pas grand chose ...

Notifications