Custom CF Tags for Dialogs

I was wondering on how to capture what’s inside a custom tag. For instance,
I want to do the following:

<dialog:mycustomtag title=“Welcome!”>

This button is in the dialog

</dialog:mycustomtag>

Whatever I put inside always ends up outside the dialog. How do I transfer
it to the tag?

I’m not sure what you mean exactly. Can you show the HTML output that this
is generating and your custom tag implementation?On Friday, June 24, 2016 at 2:26:49 PM UTC-4, Bitcoin Broker wrote:

I was wondering on how to capture what’s inside a custom tag. For
instance, I want to do the following:

<dialog:mycustomtag title=“Welcome!”>

This button is in the dialog

</dialog:mycustomtag>

Whatever I put inside always ends up outside the dialog. How do I transfer
it to the tag?

In cfm based custom tags the content between the tags is available in
thisTag.generatedContent. If you don’t want that in the output, you have to
make that empty.

Lucee also supports cfc based custom tags,
see Adam Cameron's Dev Blog: Railo: CFC-based custom tags.