Welcome Guest, Not a member yet? Register   Sign In
Performance Question: jQuery Modal Dialog
#7

[eluser]kingmaoam[/eluser]
Hi,
I finally got it working with:

Code:
<.script>
$(document).ready(function() {

$('a.button_mini').click(function(e) {
    
var ID = $(this).attr("id");
var targetUrl = ' ';

switch(ID) {
&lt;? foreach($einsatz as $item) { ?&gt;
case "confirm_link_&lt;?=$item["einsatzID"]?&gt;": targetUrl = "&lt;?=base_url('admin/content/deleteEinsatz/'.$item['einsatzID'])?&gt;";
             var $dialog = $('<div></div>')
              .html('Wollen Sie den Einsatz wirklich löschen?')
               .dialog({
                autoOpen: false,
                title: 'Einsatz löschen',
                width: '600px',
                modal: true,
                buttons: {
                 "Löschen": function() {
                          [removed].href = targetUrl;
                 },
                 "Zurück": function() {
                  $( this ).dialog( "close" );
                 }
                }
               });
             $dialog.dialog('open'); return false;
             break;
&lt;? } ?&gt;
}
});



});
</.script>

having the links in a foreach to the the ids like confirm_link_N
Code:
<td class="button"><a id="confirm_link_&lt;?=$item['einsatzID']?&gt;" href="&lt;?=base_url('admin/content/deleteEinsatz/'.$item['einsatzID'])?&gt;" class="button_mini"><span class='button_delete_small'></span></a></td>

Thanks for the help!
KR
Habib


Messages In This Thread
Performance Question: jQuery Modal Dialog - by El Forum - 08-20-2012, 06:41 AM
Performance Question: jQuery Modal Dialog - by El Forum - 08-20-2012, 07:05 AM
Performance Question: jQuery Modal Dialog - by El Forum - 08-20-2012, 07:43 AM
Performance Question: jQuery Modal Dialog - by El Forum - 08-20-2012, 08:12 AM
Performance Question: jQuery Modal Dialog - by El Forum - 08-20-2012, 08:25 AM
Performance Question: jQuery Modal Dialog - by El Forum - 08-20-2012, 08:47 AM
Performance Question: jQuery Modal Dialog - by El Forum - 08-22-2012, 05:28 AM



Theme © iAndrew 2016 - Forum software by © MyBB