Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
A VTLIB way to add values to an existing picklist
#1
I'm updating one of my modules, and I'd like to add some values to one of the picklists. Is that as simple as:

PHP Code:
            // Setup the field
            
$invoicePaymentCondField                =    new Vtiger_Field();
            
$invoicePaymentCondField->name            =    'existing_name';
            
$invoicePaymentCondField->label            =    'Label';
            
$invoicePaymentCondField->table            =    'existing_table';
            
$invoicePaymentCondField->column        =    'existing column';
            
$invoicePaymentCondField->columntype    =    'VARCHAR(100)';
            
$invoicePaymentCondField->uitype        =    16;
            
$invoicePaymentCondField->typeofdata    =    'V~M';
            
$invoiceDescriptionBlock->addField($invoicePaymentCondField);        
            
            
$invoicePaymentCondField->setPicklistValues( array('Existing values with new values') ); 

Or is there a special method for this?
Reply


Messages In This Thread
A VTLIB way to add values to an existing picklist - Guido1982 - 05-17-2017, 11:24 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)