Mix Dynamic Values With Text in a <p> Tag

Hey folks… so I have played with the innerText element to display the value of a variable, and I can see how it is set on a complete html tag. Can I mix the value of a dynamic variable with my own text in a single <p> tag?

So to say something of the form:

<p>Value of toggler_1: (toggler_1.value)</p>

I was thinking to do it with a <span>, but I can’t find a span tag in the Wappler interface…

In the end I did it with a table, but that was a tedious overkill!

Best wishes,
Antony.

Is it possible to explain what are you trying to achieve - maybe provide some example?

Hi @Teodor… sure. If I have a variable called “toggler”, I want to create a single paragraph tag with output:

Value of toggler: 1

You can just write:

<p>Value of toggler: {{toggler_1.value}}</p>

:slight_smile:

Just add a paragraph and then firstly add the static part then use the picker to select the dynamic value

1 Like

aaaahhhh… double wiggly brackets… so that is the answer… thank you! :slight_smile:

2 Likes

Yes and if you just select the text in design view - you can double click and edit it and there is a thunder icon to add dynamic data on it.

In code view the same is possible, just put the cursor inside the text and from the inspector choose insert binding.

Yes, no need to manually add it:

2 Likes

Thanks @George!
It seems to be [Insert Binding] the option to select from code view now…

2 Likes

Wow… thank you everyone… such immediate love and attention! :pray:

1 Like

@Teodor, what software do you use to create those little video gifs like you just posted?

(I’m running Windows 10).

It’s this one: https://www.screentogif.com/

Really handy little tool :slight_smile:

1 Like

Do you know of any Mac equivalents?

No, sorry - I’m not aware of any.

Gifox on mac app store.

1 Like

Tried Gifox … couldn’t figure out how to stop recording. Moved on to Giphy. Very easy but huge file sizes.

I am trying to do the same above, without success.

  1. converted app to page
    for h1 it works, while for <p> no,

here how i see it on front end:

please advice

Please explain what exactly are you trying to achieve and what is not working?

@Teodor,
it`s title and description are stored in the database.
I am trying to load the paragraph dynamically from database
as you can see above

<h1>{{serverconnect1.data.repeat1[0].form_name}}</h1>

this one works
while

<p dmx-bind:title="">Here would be instruction text and intro before the form fill.{{serverconnect1.data.repeat1[0].form_description}}</p>

is not working, and no data is loaded on front end.

This means that the {{serverconnect1.data.repeat1[0].form_description}} binding returns nothing.