Here is the config array within my viewdefs:
'config' => array(
'fields' => array(
'feed_urls' => array(
'label' => 'Feed(s)',
'name' => 'feed_urls',
'type' => 'enum',
'isMultiSelect' => true,
'options' => array(
'key1' => 'value1',
'key2' => 'value2'
)
)
)
)
this.model.get("config")
this.model.get("fields")
this.model.get("feed_urls")
How can I get to that options array?