i tried the zii.widgets.jui.CJuiDraggable' and Droppable Widget with Yii,
i've got two divs
<div id="dragable"> <img src="images/product0.png"> </div> <div id="dropable"> <p style="background-color:#B3D4EF; height: 150px; width:150px; float:right; > </p> </div>
first in the draggable the revert option doesnt work
in the droppable part i looking for something like a url option
i checked the option in jquery
http://jqueryui.com/demos/droppable/
some idea ?
how could i used something like url.
i like to do something when a draggable element is put in the droppable element.
<?php $this->beginwidget('zii.widgets.jui.CJuiDraggable', array(
'id' => 'dragable',
'options' => array(
'revert' => 'true')
)
);
$this->endwidget(); ?>
<?php $this->beginwidget('zii.widgets.jui.CJuiDroppable', array(
'id' => 'dropable',
'options' => array(
'accept' => 'dragable',
'url' => 'index.php?r=HelloWorld/drop',
)
)
);
$this->endwidget(); ?>
regards

Help












