phpMv  -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
HtmlDatalist.php
Go to the documentation of this file.
1 <?php
3 
6 
7 class HtmlDatalist extends HtmlCollection {
8 
9  public function __construct($identifier) {
10  parent::__construct($identifier, "datalist");
11  }
12 
13  protected function createItem($value) {
14  $elm = new HtmlDoubleElement("", "option");
15  $elm->setProperty("value", $value);
16  $elm->setContent($value);
17  return $elm;
18  }
19 
20  protected function createCondition($value) {
21  return true;
22  }
23 }
24 
Base class for Html collections.