I saw this PHP library over the weekend:
http://www.koolphp.net/support/demos/#koolcombobox.firstlook

and have some alpha code here - http://code.google.com/p/html-elemental/

Here's some docs on what I've done so far:

=head1 SYNOPSIS

We have some sample HTML:

 <UL id="beers">
  <li>x</li>
  <li>y</li>
  <li>z</li>
 </UL>

We have some data:

  my @data = qw(schlitz lowenbrau miller);

We create our object:

  my $UL = HTML::Elemental::UL->new(tree => $tree, ld => [id => 'beers'],
preproc => sub { $_[0]->elem->delete_content; }) ;

We populate our list:

  $UL->simple_add($_) for @data;

Render the document

  $tree->as_HTML;


-- 
Terrence Brannon
(818) 359-0893
------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
_______________________________________________
seamstress-discuss mailing list
seamstress-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/seamstress-discuss

Reply via email to