Welcome!

This community is for professionals and enthusiasts of the Genio platform.
Share your questions and challenges, and help your partners!

3

1
Carlos Nogueira
Activé 23/04/2020 14:25

Hi, 

@ is a special caracter, so, in order to get it working you must 'escape' it.

I've tried directly on the genio formula, and its working as expected:


Edit: Please note that this solution is only viable when working on interface level, with default formulas. Server formulas will not cope with this, so go with Maksym solution if that's that case.

Regards,



1
Maksym Hrytsko
Activé 21/11/2019 12:52

To be safer, create in Genio a function that does string formatting. The '@' character in MVC projects will give problems in JavaScript of this formula.



Implementations
CSharp:
return "@" + teamsName + ".com";

JavaScript:
return '@' + teamsName + '.com';

T-SQL:
RETURN '@' + @teamsName + '.com';


Then you can use this function in the formula



Note: Choose the type of formula depending on what is most appropriate for you.

  • Signaler

Hello Maksym, i had the same trouble as João and after trying your solution it didn't work, "@" acts as a special character overriding the string concatenation.

An image describing my problem is available for your analysis after João's question.

Tiago Parente
le 21/11/2019 17:27

I updated my answer. For use the functions that more safety for this cases when used some Razor special characters.

Maksym Hrytsko
le 21/11/2019 18:48

0
Tiago Parente
Activé 21/11/2019 17:24



Keep Informed

About the Community

This platform is for beginners and experts willing to share their Genio knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers. Read Guidelines

Question tools

14 follower(s)

Stats

Asked: 20/11/2019 11:03
Seen: 1881 times
Last updated: 23/04/2020 14:28