textfield

Team-Fly    

 
Webmaster in a Nutshell, 3rd Edition
By Robert Eckstein, Stephen Spainhour
Table of Contents
Chapter 14.  The CGI.pm Module


textfield

 print $query->textfield('name' [,'  value  ',  size  ,  maxlength  ]) 

Generates a text input field.

name

The name to assign the input to (required).

value

The initial value to place in the text field.

size

The size of the text field (in characters ).

maxlength

The maximum length of the text field (in characters).

Using named parameters, the syntax is:

 print $query->textfield(-name=>'  name  ',                         -default=>'  value  ',                         -size=>  size  ,                         -maxlength=>  maxlength  ,                         -override=>1,                         -onChange=>  function  ,                         -onFocus=>  function  ,                         -onBlur=>  function  ,                         -onSelect=>  function  ); 
-override=>1

Text field should not inherit its value from a previous invocation of the script.

-onChange=> function

Browser should execute function when the user changes the text field.

-onFocus=> function

Browser should execute function when the focus is on the text field.

-onBlur=> function

Browser should execute function when the focus leaves the text field.

-onSelect=> function

Browser should execute function when the user changes a selected portion of the text field.


Team-Fly    
Top


Webmaster in a Nutshell
Webmaster in a Nutshell, Third Edition
ISBN: 0596003579
EAN: 2147483647
Year: 2002
Pages: 412

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net