URL extraction from text field in Repeater block #16512
-
|
We have been working on this for many hours over several days and still haven’t had it solved. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Thank you for any help you can give me! Is there a known issue with using .match() or similar expressions in the Repeater's Data JSON/CSV in version 2.30.2? Is there a different, supported method to extract URLs from text fields and display them as clickable links in Budibase? Any examples or workarounds to properly loop through extracted URLs using Repeater Blocks? |
Beta Was this translation helpful? Give feedback.
-
|
Handlebars are limited to built-in helper functions only, you have to use javascript. Also json path addressing within handlebars is not json standard, you'll have to use .0 and not [0] to reach first element of array. Have attached an example app you can import which shows a way to iterate through some custom arrays formed from fields |
Beta Was this translation helpful? Give feedback.
Handlebars are limited to built-in helper functions only, you have to use javascript. Also json path addressing within handlebars is not json standard, you'll have to use .0 and not [0] to reach first element of array. Have attached an example app you can import which shows a way to iterate through some custom arrays formed from fields
ReptURLv29.tar.gz