|
NAMEJQuery::ClickMenu - A clickable menu VERSIONVersion 1.00 SYNOPSISJQuery::ClickMenu is a desktop style menu. use JQuery;
use JQuery::ClickMenu ;
my $list =<<EOD;
File(f)
Menu1
sep(s)
Menu2
Options(f)
Menu1
sep(s)
Menu2
SubMenu(f)
Submenu1
Submenu2
EOD
my $clickmenu = JQuery::ClickMenu->new(list => $list,
id => 'myclickmenu',
headerMenu => 1,
separator => '/',
addToJQuery => $jquery,
rm => 'MyClickMenu',
remoteProgram => '/cgi-bin/jquery_clickmenu_results.pl') ;
my $html = $clickmenu->HTML ;
my $html = $tree->HTML ;
DESCRIPTIONClickMenu displays a menu in desktop format The simplest way to present the data is in the format shown above. Each indentation represents another level. The letters in brackets stand for
FUNCTIONS
AUTHORPeter Gordon, "<peter at pg-consultants.com>" BUGSPlease report any bugs or feature requests to "bug-jquery-taconite at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=JQuery>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORTYou can find documentation for this module with the perldoc command. perldoc JQuery You can also look for information at:
ACKNOWLEDGEMENTSCOPYRIGHT & LICENSECopyright 2007 Peter Gordon, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|