First time posting so I appreciate any replies and patience required to deal with me.
Clicking a button builds some additional HTML. Now, included in that additional HTML is another button. I want the new button to perform some additional task using CGI::AJAX as well. I've got no problem getting the initial CGI::AJAX setup and working, but I'm not sure where to start on getting the second button declared with a new subroutine to parse.
Some sample code.
After clicking whoohoo I want to now click whoopy and change the 'innerDiv' from poop to tinkle.
#!/usr/bin/perl
use strict;
use warnings;
use CGI ':standard';
use CGI::Ajax;
# use CGI::Carp qw(fatalsToBrowser); # Uncomment for debugging
ajaxifyView();
sub ajaxifyView {
my $cgi = new CGI;
my $ajx = new CGI::Ajax ( 'viewsub' => \&subViewSub );
$ajx->JSDEBUG(0);
print $ajx->build_html ($cgi, \&buildHTML);
}
sub buildHTML {
my $q = new CGI;
my $html;
$html .= $q->start_html;
$html .= $q->start_table;
$html .= $q->Tr(
$q->td($q->textfield(-name=>'pantyhoes', -id=>'pantyhoes',
+ -value=>'sometext'))
);
$html .= $q->Tr(
$q->td($q->button(-name=>'whoohoo', -onclick=>"viewsub(['p
+antyhoes'], ['DisplayDiv'])")),
$q->td($q->div({-id=>'DisplayDiv'}, 'ReplaceMe'))
);
$html .= $q->end_table;
$html .= $q->end_html;
return $html;
}
sub subViewSub {
my $q = new CGI;
my $innerHTML;
$innerHTML .= $q->hidden(-name=>'smoosh', -value=>"tinkle");
$innerHTML .= $q->button(-name=>'whoopy', -onclick=>"viewsub([
+'smoosh'], ['innerDiv'])");
$innerHTML .= $q->div({-id=>'innerDiv'},"poop");
return ($innerHTML);
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|