Drupal - Tokens for Webform Component Values [closed] - drupal

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
Is there a way to set up a Webform such that I can turn component field submissions into tokens for use in the submission email?
For example, I want to include "Message from [email address]" in the email subject line. The default options only allow for including only the component field in the email (subject: [email]), or only custom text.
Is there a way I can turn the component field submission into a token for use in the email? Looks like there's a module for turning webform items into tokens, but it's not for use within webform.

Figured it out - use %value[key] whenever you want to get a submitted field value. I found it from a random search that brought me here: http://drupal.org/node/1010648.
Feels like %value[key] should be in the Token help dictionary in the email section of the webform admin UI this was a botch to find.

Related

(Gravity form / Wordpress) Creating a floating field within a form [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed last year.
Improve this question
I have an existing form with some main and conditional fields.
I want the conditional fields to show as a floating pop-up beside the main fields (instead of having that conditional fields showing within the page/form itself), but there seems to have no native way of doing it, nor existing add-on. Any input on how I could do it?
Thanks!
This might help: https://gravitywiz.com/documentation/gravity-forms-nested-forms/
You can make the nested forms show up with conditional logic in your setup. The nested forms appear in a pop-up window.

Gravity forms frontend repeating fields groups/section [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I need to create a form in gravity forms. Client need to full in the form and should be able to add sections with title, body and image. I can create the form but can't get frontend add fieldgroup or section to work. Anyone ideas how to make fields repeatable on frontend?
We have a solution (Gravity Wiz team) called Nested Forms:
https://gravitywiz.com/documentation/gravity-forms-nested-forms/
We wrote a guest post on the Gravity Forms website about it here:
https://www.gravityforms.com/repeatable-data-wordpress-forms/
Gravity Forms does not allow creation of fields from the front-end. All fields have to be created from the backend.
If you want to have some sort of repeatable fields try to use the list field with multiple columns and then style them with your own css.
If you want to change the input type of a particular column from text to dropdown you can use the gform_column_input filter which is described in further details here
I did export the form then duplicated them by copy paste in the xml file. Conditional logic changed numbers end now it works. This was the fastest option for me. Other solutions didn't have the right options.

Microsoft access form view [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am creating a Microsoft access application, and I designed a login form, where the user inputs username and password. I want the form view of the form to be showing above the access window, as a pop-up... how do I achieve that?
Set the Popup property for the form to Yes. You probably also want to set the Modal property to Yes, which will disable the application window until the form is closed or hidden.

Using Password Recovery control with my own database [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to use the password recovery control of asp.net, but with my own database, I dont want to use the membership table that is already provided. Is there a way to do this? I have searched on google but did not get a single one that is relevant to what I want to do. Please Help. Thanks
The general approach to this would be to implement your own MembershipProvider, this would allow you to override the default behaviour. However, you would need to implement all the behaviour, not just the stuff you want to change (see this example).
You can implement the GetPassword / ResetPassword methods and have them work from your own database rather than the membership table.

How to set the different language for asp.NET application? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am new to development of asp.net applications... I want to give different language options for the user to choose as he wishes.
Thanks in advance
The best way to do this is to have all the text for your site set in a language table in your database. Every piece of text. Set a unique ID for each languae, 1=English, 2=Spanish, and so on. Then, when populating the text on your page, rather than calling up the text from a static table, call it up from the Language table for that ID.

Resources