Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Use 'USE_HTMLEDITOR ALLOW_HTML' to display the property as HTML editor.

  • Use ‘USE_TEXTAREA’ to display the property as multi-line text field (textarea).

Code Block
languagephp
$propDefs['description'] = array(
	...
	'options'=>'USE_HTMLEDITOR ALLOW_HTML',
	...
);

Property data

When you use your model’s getRecord() or getRecords() methods, then you have the values available by name of the property.

...