Developer forum

Forum » Feature requests » DwTemplateTagsClassic

DwTemplateTagsClassic


Reply

Hi guys,

 

When is it going to be implemented?

(see also this thread: http://developer.dynamicweb.dk/Forum-17061.aspx?action=ShowThread&ThreadID=661)

 

Kind Regards,

Emil


Replies

 
Reply

The upcoming release has not yet been detailed, so I can't give you a positive answer.

 
Reply

 

For now we use the following workaround to show the available template tags by dumping them in a separate window, because in some designs it's just not possible to use the formatted output in the same page.

 

Paste the following code anywhere in your template. (note: you can only have this piece of code once, unless you change the ID of the DIV and javascript code)

 

<div style="display: none;" id="dwTemplateTags">
<!--@DwTemplateTags-->
</div>
<script language="javascript">
var wnd = window.open();
if (wnd!=null) wnd.document.write(document.getElementById('dwTemplateTags').innerHTML);
</script>




Kind Regards,
Emil

 

 
Reply

Cool tip, thanks!

 
Reply

This tip is so cool it deserved to be a tag itself :P

< !--@DwTemplateTagsPopUp-- > 

 
Reply
nuno wrote:

This tip is so cool it deserved to be a tag itself :P

< !--@DwTemplateTagsPopUp-- > 


Haha, yea could be nice as well :-)

 
Reply
Hi,

I would like to request again the DwTemplateTagsPopUp tag. Would be great because sometimes it simply breaks down the HTML and we can't see because of font color. I use the code provided by sorenson a lot.

Best Regards,
Nuno
 
Reply
Yes a popup tag would be great!

But in the until that comes I will also begin to use the code from sorensen!