Coder Social home page Coder Social logo

Comments (6)

tonydspaniard avatar tonydspaniard commented on August 18, 2024

Could you provide example code of what you are trying to do? I require that in order to propose a solution... thanks

from yiibooster.

philippfrenzel avatar philippfrenzel commented on August 18, 2024

Here is the code..

$actionAddURL = CHtml::Ajax(
                array(
                        'success'=>"function(data){addArticelsets._updateArticelsets_url='".
                                    Yii::app()->createUrl("articelsets/create", array("artid"=>$aid))."';
                                    addArticelsets();
                                    $('#dialogArticelsets').dialog('open');                                
                                    }"
                    )
            );

$this->beginWidget('bootstrap.widgets.TbBox', array(
        'title' => CHtml::encode($data->art_name_short),
        'headerIcon' => 'icon-home',
        'headerButtonActionsLabel' => 'My actions',
        'headerActions' => array(
                array(
                    'buttonType'=>'ajaxButton',
                    'label'=>'add articel', 
                    'url'=>'#',
                    'htmlOptions'=>array(
                        'onclick'=>$actionAddURL,
                    ),
                    'icon'=>'icon-plus'
                ),
             ),
        ),
    ));

I'm sorry for my bad codings, I'm not really a well educated programmer....

Regards Phil

from yiibooster.

tonydspaniard avatar tonydspaniard commented on August 18, 2024

Phil, where is the url ? Check this post, it may help you out: http://www.yiiframework.com/forum/index.php/topic/7805-how-to-use-chtmlajax/

Also, please check TButton L#217 you better to set the ajaxOptions not the onclick. For good reference of what are the options that you need to set for ajax please review CHtml.ajax (see its source)

from yiibooster.

philippfrenzel avatar philippfrenzel commented on August 18, 2024

Thanks - as very often I'm the issue by myself... Thanks for your hint! Cheers Phil

from yiibooster.

philippfrenzel avatar philippfrenzel commented on August 18, 2024

Hi, I was playing aroung now since one hour, regarding your links;) And still no event get's fired by clicking on the button...
$this->beginWidget('bootstrap.widgets.TbBox', array(
'title' => CHtml::encode($data->art_name_short),
'headerIcon' => 'icon-home',
'headerButtonActionsLabel' => 'My actions',
'headerActions' => array(
array(
'buttonType'=>'ajaxButton',
'id' =>'addSetArticleWindow',
'label' =>'add articel',
'url' =>'#',
'ajaxOptions'=>$actionAddURL,
'icon' =>'icon-plus'
),

Inside the generated html, I don't even see the assigned ID or any changes due to the button type...

from yiibooster.

tonydspaniard avatar tonydspaniard commented on August 18, 2024

Big apologies Phil,

The thing is that you cannot use different types of 'buttonTypes' when on the dropdown actions. The headerActions are actually the items property of the dropdown menu of TbButtonGroup>TbButton. Please, do the following:


 $actionAddURL = CHtml::Ajax(
                array(
                        'success'=>"function(data){addArticelsets._updateArticelsets_url='".
                                    Yii::app()->createUrl("articelsets/create", array("artid"=>$aid))."';
                                    addArticelsets();
                                    $('#dialogArticelsets').dialog('open');                                
                                    }"
                    )
            );

$this->widget('bootstrap.widgets.TbBox', array(
        'title' => CHtml::encode($data->art_name_short),
        'headerIcon' => 'icon-home',
        'headerButtonActionsLabel' => 'My actions',
        'headerActions' => array(
                array(
                    'label'=>'add articel', 
                    'url'=>'#',
                    'linkOptions'=>array(
                        'onclick'=>$actionAddURL,
                    ),
                    'icon'=>'icon-plus'
                ),
             ),
        ),
    ));

There are other ways to do it, but this is the easiest one...

from yiibooster.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.