New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Show redirects

11 June 2026

  • 15:3515:35, 11 June 2026 Count number of selected items in a selection field (hist | edit) [571 bytes] Smtxwiki (talk | contribs) (Created page with "If you have a multi-selection field, and you want the know how many entries were chosen, you can use this : Iif ('#REPLACE-FORMFIELD-testCount||AllEmailAddresses||#' = '', 0, ForEachString('#REPLACE-FORMFIELD-testCount||AllEmailAddresses||#', '||' , '1','+', 1)) Explanation: - The user selects x email addresses in the field 'AllEmailAddresses' - paste the code above in a secondary field, enable calculations, and it will show you the number of selected entries. samp...")

4 June 2026

  • 09:5309:53, 4 June 2026 Webservice database (hist | edit) [952 bytes] Smtxwiki (talk | contribs) (Created page with "Convert to hyperlink: function transformLinks(text) { // 1. Zoek naar [Tekst](URL) en vervang door <a href="URL">Tekst</a> // De regex zoekt naar: [ alles behalve ] ] ( alles behalve ) ) const markdownRegex = /\[([^\]]+)\]\((https?:\/\/[^\s)]+)\)/g; let html = text.replace(markdownRegex, '<a href="$2" target="_blank">$1</a>'); // 2. Zoek naar resterende URL's die NIET al in een href-attribuut zitten // Deze regex pakt losse http/https links die voor...")