1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
<?php foreach ($secteurs as $secteur): ?>
<?php
echo $urlAjax = link_to('Edit',"Secteurs/edit?id=".$secteur->getid(),array('id'=>'m12','onclick'=>'popume()'));
?>
</div>
<?php endforeach; ?>
<?php
echo javascript_tag("
function popume(){
jQuery('#m12').live('click',function(){
var monurl = jQuery('#m12').attr('href');
$('#monid').load(monurl, function() {
$(this).dialog({
height: 'auto',
width:'auto',
modal: true,
position: 'center',
});
});
});
}
");
?>
<div id="monid" title="Maj dialog Box"></div> |
Partager