Is there an equivalent of the CCK Computed Field for Webforms? I.e. somethere where you can have a Webform component's content created from the values of the other Webform components (or have a CCK field created from the values of the other Webform components).
Alternatively, will an existing CCK Computed field be able to use Webform component values in the PHP code for the CCK Computed field?
Comments
Comment #1
quicksketchI have not personally seen such a module, though I've seen several users manually implement such functionality through hook_form_alter() in a custom module.
Comment #2
amysragbag commentedSubscribing. I'm interested in this too. The hook_form_alter thing is a little over my head, I think.
Comment #3
grguth commentedSubscribing
Comment #4
hagit commentedsubscribing
Comment #5
vernond commentedI've made a start at achieving some kind of computed field ability via a custom component. It offers three methods to obtain a calculated value:
* switch-case
* standalone calculation
* one of two calculations via an if-else-then structure
There is no support currently for select multiple or grids because I just cannot figure out how to deal with them and their many possibilities adequately. Any insight, hints, tips, suggestions or recommendations that point towards a resolution of these exceptions will be greatly appreciated.
Give it a try and please let me know how you think it could be improved.
See http://drupal.org/node/1251902#comment-4922646
Comment #6
quicksketch