Tabs Widget :: Ajax




echo Tabs::widget([

        'items' => [

            [

                'label' => 'Tab one',

                'content' => 'Mauris mauris ante, blandit et, ultrices a, suscipit eget...',

            ],

            [

                'label' => 'Tab two',

                'content' => 'Sed non urna. Phasellus eu ligula. Vestibulum sit amet purus...',

                'options' => ['tag' => 'div'],

                'headerOptions' => ['class' => 'my-class'],

            ],

            [

                'label' => 'Tab with custom id',

                'content' => 'Morbi tincidunt, dui sit amet facilisis feugiat...',

                'options' => ['id' => 'my-tab'],

            ],

            [

                'label' => 'Ajax tab',

                'url' => ['ajax/content'],

            ],

        ],

        'options' => ['tag' => 'div'],

        'itemOptions' => ['tag' => 'div'],

        'headerOptions' => ['class' => 'my-class'],

        'clientOptions' => ['collapsible' => false],

    ]);



Why this canocial example doesn’t work?

No ajax request to ‘url’ => [‘ajax/content’] found in FireBug on ‘Ajax tab’ tab activating((