Example #1
0
 private function getListReAddTable()
 {
     $AC = anyC::get("Gericht");
     $AC->addAssocV3("GerichtAdded", "=", "0");
     $AC->addOrderV3("GerichtName");
     $L = new HTMLList();
     $L->noDots();
     $L->addListStyle("padding-top:10px;width:370px;padding-left:0px;");
     while ($B = $AC->getNextEntry()) {
         $L->addItem($B->A("GerichtName"));
         $L->addItemStyle("margin-left:5px;height:24px;white-space:nowrap;font-size:20px;padding-left:10px;padding-top:10px;padding-bottom:10px;margin-top:0px;cursor:move;-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;");
         $L->addItemClass("swipe");
         $L->addItemData("itemid", $B->getID());
     }
     return $L . $this->js("reAddItem");
 }