Replies: 2 comments 8 replies
-
You cannot run random script in a handlebar template. You have to play with the available handlebar helper methods in e.g. https://github.com/helpers/handlebars-helpers?tab=readme-ov-file#categories and https://microsoft-search.github.io/pnp-modern-search/extensibility/templating/#handlebars-helpers |
Beta Was this translation helpful? Give feedback.
-
Phone numbers are a pain in the neck. The best solution I have seen is to have multiple phone number fields in the User Profiles. One for display format (+47 12 34 56 78) and another for search (12345678) and sometimes a 3rd for phone number extension search ( 5678 ) |
Beta Was this translation helpful? Give feedback.
-
I want to make the phone number in the person card easier to read, ie "12 34 56 78".
I asked ChatGPT and the reault was:
javascript:
methods: {
formatPhoneNumber(phoneNumber) {
return phoneNumber.replace(/(\d{2})(?=\d)/g, '$1 ');
}
}
and then i html:
But this did not work. Any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions