I am looking for a way to get the value of a custom field (data type: NamedIDLabel) that I have crea
Summary
I am looking for a way to get the value of a custom field (data type: NamedIDLabel) that I have created in my contacts table.Content
I am looking for a way to get the value of a custom field (data type: NamedIDLabel) that I have created in my contacts table.
If I use a widget, I can retrieve it in the following way
<rn:widget path="input/FormInput" name="Contact.CustomFields.c.CustomFieldsName" />
Is there any other way to do this?
<?
$contact = $this->model('Contact')->get(contactID)->result;
$metaData = $contact::getMetadata();
・・・・・
<option value="">--</option>
<option value="" <? = $this->outputSelected($key) ? >><? =\RightNow\Utils\Text::escapeHtml($item, false);? ></option>.
0