Announcement

Collapse
No announcement yet.

Feld URL Automatisch Hyperlink

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Feld URL Automatisch Hyperlink

    Hallo,

    Ich habe in einer Entität ein "URL-Feld" hinzugefügt.
    Wenn ich einen Link eintrage, dann ist das optisch nicht so wunderbar, da er manchmal sehr lange ist.
    Gibt es eine Möglichkeit, dass das CRM automatisch einen Hyperlink daraus macht?

    Also z.B. statt: "https://www.google.de" nur mehr "google" da steht?
    Danke

  • #2
    Hallo McBrumm,

    Versuchen Sie, das Feld mit dem Wysiwyg-Typ zu verwenden, nicht mit dem URL-Typ. Dies funktioniert nicht automatisch, aber Sie können Links beliebig kürzen, indem Sie den Link-Button in der Feldleiste verwenden.

    Comment


    • #3
      spät, aber doch :-)
      vielen Dank

      Comment


      • #4
        you can do it also with a textbox field and markdown. Using a formula you can concatenate the Link in the Url field with the markdown into the textbox. How to form a link ist written here: https://docs.espocrm.com/user-guide/markdown/#link

        For the text you can use whatever you want (I use for example the name of the record), for the link you pull the content of the url field.

        In the end you will need two fields: URL and a textbox, let`s call it alias.

        The formula for the alias would look like this:

        Code:
        alias=string\concatenate('[',name,']','(',URL,')');
        name and URL are the fields (not the content, therefore no ticks)

        Let`s assume your record is named Video and the URL is https://dummy.html, then your alias would look this: Video, formatted as a link. to https://dummy.html

        It is obviously a bit more complicated, than using a WYSIWYG, but the textbox you can automate this way. Put in your record name, put in the url, voila, there is a link.

        Normally in this use case I always hide the URL field in a panel, that is only visible for admin.

        Comment

        Working...
        X