Contao Summit 2026 in Leipzig 15th and 16th October

Root Page Dependent Select

This widget renders a module selection per root page of the site structure. This widget was specifically made for the Root page dependent modules front end module.

Root Page Dependent Select Root Page Dependent Select

Options

This widget has no special options. See the DCA reference for a full field reference.

Example

use Doctrine\DBAL\Platforms\MySQLPlatform;

// …
'example' => [
    'inputType' => 'rootPageDependentSelect',
    'eval' => ['submitOnChange' => true, 'tl_class' => 'w50'],
    'sql' => [
        'type' => 'blob',
        'length' => MySQLPlatform::LENGTH_LIMIT_BLOB,
        'notnull' => false,
    ],
],
// …