diff options
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 581ae0aab..a7ac5d319 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -354,7 +354,14 @@ function system_elements() { '#input' => TRUE, '#size' => 60, ); - + $type['tableselect'] = array( + '#input' => TRUE, + '#js_select' => TRUE, + '#multiple' => TRUE, + '#process' => array('form_process_tableselect'), + '#options' => array(), + '#empty' => '', + ); /** * Form structure. |