I already said this, but: wonderful Module :-)
After comitting the webform I like to jump directly to the resultpage. In my case, this can be a second webform.
Is there any possibility that this module offer this functionality?
Additionally: it would be nice, if the user can specify the query and fragment of the result-link. (the parts after '?' and '#')
Example:
result-URL: node/13 (maybe this is an other webform)
query: 'sid=$_GET['sid']' (the actual sid, so the second webform can grab this)
fragment: empty
The link would be: 'node/13?sid=87'
My "Hack": in evalwf.class (line 876) I commented the l():
$content = $link; // $content.= l('Next', $link);
In evalwf.module (line 189) I changed this:
$link=$component_tree->check_conditions();
drupal_goto($link,'sid='.$_GET['sid']);
Is there a better way ?
PS: it would be awesome, if you offer Token (each for one result) to add this to query - so you can make cascading webforms. But I 'm afraid this is to much work.
Comments
Comment #1
tis commentedThank you for your remark.
I think this is a good solution for your problem. Maybe I have to add new options to my module.
I will think about "cascading webforms".
Comment #2
tis commentedI've implemented direct jump option.
You can reach it through cvs:
http://drupalcode.org/viewvc/drupal/contributions/modules/evalwf/?pathre...