Yii: jQuery UI widget dialog with ok and close buttons.
<?php
$this->beginWidget('system.zii.widgets.jui.CJuiDialog',
array(
'id'=>'dialog'.$this->id,
// additional javascript options for the dialog plugin
'options'=>array(
'title'=>$this->id.' Dialog box 1',
'width'=> '800px',
'height' => '600',
'position' => 'top',
'top' => '50px',
'modal' => true,
'buttons' => array(
"Ok"=>'js:function(){alert("xxx")}',
'Close'=>'js:function() {$(this).dialog("close");}'
),
'autoOpen'=>false,
)
)
);
?>
Reference:
<?php
$this->beginWidget('system.zii.widgets.jui.CJuiDialog',
array(
'id'=>'dialog'.$this->id,
// additional javascript options for the dialog plugin
'options'=>array(
'title'=>$this->id.' Dialog box 1',
'width'=> '800px',
'height' => '600',
'position' => 'top',
'top' => '50px',
'modal' => true,
'buttons' => array(
"Ok"=>'js:function(){alert("xxx")}',
'Close'=>'js:function() {$(this).dialog("close");}'
),
'autoOpen'=>false,
)
)
);
?>
Reference:
No comments:
Post a Comment