Am 05.11.2012 18:38, schrieb Jeff Lawson:> As I mentioned in my report,
"It doesn't seem to affect text or
> select" so those should be working fine.
>
> Did you also test checkbox? I didn't include a test for it in that
> sample code, but one of my colleagues reported that it was also
> affecting them. You might want to check all of the input types just
> to be sure.
I rechecked a couple of them including checkbox(es), radio(buttons) and
it all works fine.
For, me, it is fixed now.
Below is my test code, based on your example.
Harald
----
<html>
<head /><body>
<?
package require form
set response(department) "Development"
#parray response
form myform -defaults response -method post
myform start
puts "<table>"
puts "<tr><th>Department:</th><td>"
#myform select department -values {Sales Development Operations}
#myform text department -size 200
#myform textarea department -rows 8 -cols 80
#myform checkboxes department -values {Sales Development Operations}
#myform checkbox department -value Development
#myform radiobuttons department -values {Sales Development Operations}
#myform radio department -value Development
#myform hidden department -value Development
puts "</td></tr>"
myform submit save_tps -value "Save Report"
myform end
myform destroy
?>
</body>
</html>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]