I have created a View that uses Fields. It uses the "SWF Tools" Display Type. I can assign my Views Fields to the various SWF Tools fields, no problem. However, if I set the "Duration" field, save the settings, and then re-visit, the field does show it's saved value.

Comments

mr.andrey’s picture

experiencing the same problem.

mr.andrey’s picture

in views_plugin_style_swftools.inc, there is an error:

      // Duration
      $form['duration'] = array(
        '#type' => 'select',
        '#title' => t('Duration'),
        '#description' => t('Select the field that should be rendered as the duration for each file.'),
        '#options' => $fields,
        '#default_value' => $this->options['date'],
      );

default_value should be duration instead of date.

Having set that, it still makes no difference in the display (JW5), though it does remember the selection.

Andrey.