multiple Pjax in one page - reloads complete page

Hello,

I have a page where I have 3 Tabs in each contains a pjax blocks in. the user can here add with each another kind of option to his account with a pop up selection list. When now the user opens one of the lsts and pushes then the add button, the complete page (with the tabs in) gets reloaded instead of reloading only the pjax container of the chosen tab. When I disable all pjax blocks except one, this works fine, but with more than one pjac block in its reloading the whole page

I tried already to add as option the data-pjax-container id, with the same result.

here my code:




...

Pjax::begin(['id' => 'tab1_pjax', 'timeout' => 15000, 'options' => ['data-pjax-container' => 'tab_1']]);

echo TabularForm::widget([

    'dataProvider'  => $dataProvider,

    'id' => 'tab_1',

...

Pjax::end();

..

Pjax::begin(['id' => 'tab2_pjax', 'timeout' => 15000, 'options' => ['data-pjax-container' => 'tab_2']]);

echo TabularForm::widget([

    'dataProvider'  => $dataProvider,

    'id' => 'tab_2',

...

Pjax::end();

...

Pjax::begin(['id' => 'tab3_pjax', 'timeout' => 15000, 'options' => ['data-pjax-container' => 'tab_3']]);

echo TabularForm::widget([

    'dataProvider'  => $dataProvider,

    'id' => 'tab_3',

...

Pjax::end();



so perhaps somebody can help me out here with a tipp

tia

Georg

see http://www.yiiframework.com/forum/index.php/topic/62469-using-pjax-with-multiple-gridview-each-within-jquery-tabs/