I've added a new module in LAM for some site specific values we have (in 
our site specific LDAP schema), and things work fairly well.

Now I would like to add one where I need a textarea in LAM, and in 
particular in the SelfService console. Is that possible?

I know that if I use something like this I get a standard input box of 
size 30:

                        $return['skypeName'] = array(
                                array('kind' => 'text', 'text' => 
_('Skype Name (Not the full name!)')),
                                array('kind' => 'input', 'name' => 
'localPerson_skypeName', 'type' => 'text', 'size' => '30',
                                        'maxlength' => '255', 'value' => 
$skypeName));

If I do like this, I get a drop down box with the values TRUE and FALSE 
to choose from:

                       $return['vacationStatus'] = array(
                                array('kind' => 'text', 'text' => 
_('Active')),
                                array('kind' => 'select', 'name' => 
'localPerson_vacationStatus', 'options' => array('TRUE','FALSE'), 
'options_selected' => array('FALSE'), 'size' => '1',
                                        'maxlength' => '255', 'value' => 
$vacationStatus));

... but can I make a text area, a field that can take a few lines of 
text with newlines?


------------------------------------------------------------------------------
_______________________________________________
Lam-public mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/lam-public

Reply via email to