Developer forum

Forum » Templates » Forms for editors - templatetags how?

Forms for editors - templatetags how?

Lise T. Pedersen
Reply

How do I get the templatetags for "Forms for editors" - I have a form, where I have uset the "brødtekst" element in the form - and I don't want this element to be outputted in the receipt, the customer is receiving.

But I am not sure how to get the templatetags for this template (using the default DW-templates)

Or is there an easier way of choosing elements, not to be outputted?

Regards
Lise

 


Replies

 
Nicolai Høeg Pedersen
Reply
This post has been marked as an answer

Hi Lise

In your template for the receipt (DefaultMailReceipt.cshtml) you can make the following change. I'll also add it to the default receipt template for a later hotfix.

 

    @foreach (LoopItem field in GetLoop("FieldValues"))
                                                            {
                                                                int fieldId = field.GetInteger("Field.ID");
                                                                string fieldHtmlId = field.GetString("Field.HtmlId");
                                                                string fieldName = field.GetString("Field.Name");
                                                                string fieldControl = field.GetString("Field.Control");
                                                                string fieldDescription = field.GetString("Field.Description");
                                                                bool fieldIsButton = field.GetBoolean("Field.IsButton");
                                                                bool fieldIsOther = field.GetBoolean("Field.IsOther");
                                                                string submitValue = field.GetString("SubmitData.Value");
                                                                string submitOptionText = field.GetString("SubmitData.Value.OptionText");
                                                                if (!fieldIsButton && !fieldIsOther)
                                                                {

Votes for this answer: 1

 

You must be logged in to post in the forum