Example #1
0
 function getSearchMask()
 {
     $ft = new FontType();
     $ft->setFontsize(2);
     $table = new Table(array(""));
     $table->setFonttypes(array($ft));
     $table->setHeadEnabled(false);
     $table->setDesignJN("J");
     $r = $table->createRow();
     $r->setAttribute(0, new Text("Geben Sie hier ihren Suchbegriff ein"));
     $table->addRow($r);
     $r = $table->createRow();
     $r->setAttribute(0, new Textfield("SuchString"));
     $table->addRow($r);
     $hidden = new Hiddenfield($this->TABLENAME . "SEARCH", "doSearch");
     $form = new Form($_SERVER['SCRIPT_NAME']);
     $form->add($hidden);
     $form->add($table);
     $form->show();
 }