| | |
| | | protected $tagname = 'input'; |
| | | protected $type = 'text'; |
| | | protected $allowed = array( |
| | | 'type','name','value','size','tabindex','autocapitalize', |
| | | 'type','name','value','size','tabindex','autocapitalize','required', |
| | | 'autocomplete','checked','onchange','onclick','disabled','readonly', |
| | | 'spellcheck','results','maxlength','src','multiple','placeholder', |
| | | 'autofocus', |
| | | 'spellcheck','results','maxlength','src','multiple','accept', |
| | | 'placeholder','autofocus', |
| | | ); |
| | | |
| | | /** |
| | |
| | | $index = $this->rowindex; |
| | | } |
| | | |
| | | // make sure row object exists (#1489094) |
| | | if (!$this->rows[$index]) { |
| | | $this->rows[$index] = new stdClass; |
| | | } |
| | | |
| | | $this->rows[$index]->attrib = $attr; |
| | | } |
| | | |