We have templating workflow. when user submits a document a job initiator screen is presented to the user (wft file is used). The use rfills in couple of texts and checks radion button. On clicking "submit" we would like to capture what user selected in radio button.
I tried to use both my
@rad_val = __VALUE__('File_meta_IsSecure_$i') as well as my
@rad_val = __VALUE__('File_meta_IsSecure_0') but value is returning blank.
I need to basically capture the value user is putting in radio button....this is how we are creating it in wft file....
$isSecure_html = get_radioHtml( 4, $file_meta{'isSecure'} );
TAG_info(
"File_meta_IsSecure_$i" =>
[ label => 'Requires Login',
html => "$isSecure_html",
valid_input => validate(),
is_required => 'true',
error_msg => 'Please select correct option by looking at document path',
],
);