Dear Fellow Monks,
As can be seen in
this url, how come my snippet below:
sub generate_form {
print start_multipart_form(),
strong('GO Term or GO ID:' ),
textfield( -name => 'go_ti'
-overrride => 1
-default => 'microtubule' # no effect
), br, br
strong('Sequence Type: '),
popup_menu(
-name => 'seq_type',
-values => [
'Upstream',
'Downstream',
'ORF (unspliced)',
]
),
strong('Start:'),
textfield( -name => 'win_start'
-overrride => 1
-size => 10, # no effect
-maxlength => 10,
-default => '-800'
),
strong('End:'),
textfield( -name => 'win_end'
-overrride => 1
-size => 10, # no effect
-maxlength => 10,
-default => '-1'), br, br
strong('Organism Types: '),
popup_menu(
-name => 'organism',
-values => [
'A.gambiae',
'A.nidulans',
'A.thaliana',
'B.subtilis',
'C.elegans',
'C.familiaris',
'D.melanogaster',
'D.rerio',
'E.coli',
'F.rubripes',
'G.gallus',
'H.sapiens',
'M.musculus',
'R.norvegicus',
'S.cerevisiae',
]
),br, br
submit( -name=>'action', -value => 'Submit' ),
end_form;
}
# the complete code is here: http://dpaste.com/8976/plain/
- doesn't enable default value for my first textfield ('go_ti')?
- And also the maxsize and length in textfield 'win_end' and 'win_start' doesn't seem to take effect?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.