Exemplo n.º 1
0
//for run this test, please remove this line
define('PIWI_URL', '../');
include_once '../Piwi.php';
$vbox = new VBox();
$vbox->packStart(new Entry('entry1', '', 'Entry'));
$vbox->packStart(new TextArea('textarea1', '', 'Text Area'));
//$vbox->packStart(new Calendar('calendar1', '', 'Calendar Entry'));
$checkButtons = new CheckButtons('checkbuttons1', 'vertical');
$checkButtons->setTitle('Check Buttons');
$checkButtons->addOption('Foo', 'FOO');
$checkButtons->addOption('Bar', 'BAR');
$checkButtons->addOption('Waz', 'WAZ');
$vbox->packStart($checkButtons);
$radioButtons = new RadioButtons('radiobuttons1', 'vertical');
$radioButtons->setTitle('Radio Buttons');
$radioButtons->addOption('Foo', 'FOO');
$radioButtons->addOption('Bar', 'BAR');
$radioButtons->addOption('Waz', 'WAZ');
$vbox->packStart($radioButtons);
//$file = new FileEntry('archivo');
//$vbox->packStart($file);
$b = new Button('b1', 'Send', STOCK_CANCEL);
$b->addEvent(new JSEvent(ON_CLICK, 'this.form.submit()'));
$vbox->packStart($b);
$form = new Form($_SERVER['PHP_SELF'], 'post');
$form->add($vbox);
$form->show();
if (count($_POST) > 1) {
    $data = array();
    $i = 0;
    foreach ($_POST as $k => $v) {