Edit SharePoint URL field text and hide it's description

Hello.

Is there a way to change the "Type the Web address:" circled in red and hide the entire contents circled in green for the SharePoint Hyperlink Field called "FileLink" shown below?

Hello @stormanh,

You can change the 'Type the Web address" text using this code:

fd.field('Hyperlink').urlFieldTypeText = 'New text'

And hide the description input with this one:

fd.field('Hyperlink').$el.children[1].hidden = true

@mnikitina

Works Perfect!

Thank you! :smile:

1 Like