solution titleText

Hi all,

is it somehow possible to set the solution titleText by code?

[attachment=0]solution_titleText.png[/attachment]

Regards,

Peter

We currently have no API call for that to change that on-the-fly. But, if you would like to change this at the startup of your solution there is a workaround.

You could use an i18n key for that property, like “i18n:solution_title” and in the “onOpen” event of your solution change that key to any value, like this:

i18n.setI18NMessage('solution_title', 'My brand new title');

On that event it will work. However, if you change that at a later stage inside your solution the title will not refresh.

Would that work?

Hi Vincent,

That will do, thanks.

Regards,

Peter