0

我在一个FancyBox Widget内开了一个FancyBox Iframe

在 FancyBox Iframe 中,我看到了我想要的所有数据;

现在,当 FancyBox Widget 出现时,我无法设置宽度和高度;

如何设置Height and WidthFancyBox Widget?

这就是我初始化 FancyBox Iframe 的方式:

$this->widget('application.extensions.fancybox.EFancyBox', array(
    'target' => 'a.referrallink',
    'id' => 'referrallink',
    'config' => array(
        'type' => 'iframe',
        'width' => 1000,
        'height' => 600,
    ),));

这就是我初始化 FancyBox 小部件的方式:

$this->widget('application.extensions.fancybox.EFancyBox', array(
    'target' => 'a.fitGraphic',
    'id' => 'fitGraphic',
    'config' => array(
        'min-width' => 300,
        'min-height' => 300,
        'width'=>300,
        'height'=>300,
        'autoDimensions'=> true,
    ),));
4

1 回答 1

0

解决方案是:

    $this->widget('application.extensions.fancybox.EFancyBox', array(
        'target' => 'a.fitGraphic',
        'id' => 'fitGraphic',
        'config' => array(
            'type' => 'inline',
            'min-width' => '300px',
            'min-height' => '300px',
//            'height' => '300px',
//            'width' => '300px',
            'autoDimensions' => false,
        ),
            )
    );
于 2013-02-11T15:53:38.250 回答