http://www.perlmonks.org?node_id=994046


in reply to Best tools for simple WebUI

What are you referring to by "repeating forms." Does the entire form repeat? Do only specific elements repeat? Do you have the same form multiple times on the page but using different form tags?

I have a module that handles various types of repeating, but I'd like to make sure I'd be answering the question you are wanting answered before I just spit out a random solution to a problem you might not be having.

my @a=qw(random brilliant braindead); print $a[rand(@a)];

Replies are listed 'Best First'.
Re^2: Best tools for simple WebUI
by kazak (Beadle) on Sep 18, 2012 at 08:46 UTC
    Thx for your attention. The thing I trying to make it's Xen images builder,and when this software builds some image it takes input data (like hostname,IP, etc.... from a DB). So one appliance (that will be started from the image built by my system) may have multiple network interfaces, so element IP address may be repeated due to a multiple network interfaces, or user may want to add 2 images at once so whole form may be repeated with all its elements.