The Combobox widget creates a dropdown selection box with a list of options.
use PhpGui\Widget\Combobox;
$combo = new Combobox('parentId', ['values' => 'Option1 Option2 Option3']);
- Uses space-separated values to generate the option list.
- Provides methods to get or set the selected value.
- Great for selection lists and forms.