August 2016
Intermediate to advanced
610 pages
11h 55m
English
Generating an HTML single select element is similar to the process of generating radio buttons. The tags are structured differently, however, in that both a SELECT tag and a series of OPTION tags need to be generated.
Application\Form\Element\Select class that extends Application\Form\Generic.Generic rather than Radio is because the structuring of the element is entirely different:namespace Application\Form\Element;
use Application\Form\Generic;
class Select extends Generic
{
// code
}Application\Form\Generic. Unlike radio buttons or checkboxes, there is no need to account ...Read now
Unlock full access