Advertisement
Guest User

Untitled

a guest
Feb 10th, 2012
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.25 KB | None | 0 0
  1. <p>Folgend findest du die Liste aller Termine, die f&uuml;r diese Route hinterlegt sind.</p>
  2. <?php if (!empty($dates)):?>
  3.     <script>
  4.         jQuery(function() {
  5.             jQuery(".witchroute_delete_btn").click(function(){
  6.  
  7.                 var id      =   jQuery(this).attr('date-id');
  8.  
  9.                 var deleteData  = { id: id,  
  10.                                     action: "remove_date_from_route",
  11.                                     security: '<?php print wp_create_nonce("adsfadsfasdfadsfd"); ?>'
  12.                                 };
  13.                
  14.                 var r2 = jQuery.ajax({
  15.                     url: ajaxurl,
  16.                     type: "POST",
  17.                     data: deleteData,
  18.                     dataType: "html"
  19.                 });
  20.  
  21.                 r2.done(function(msg) {
  22.                     //jQuery("#witchroute_date_display_body").html(msg);
  23.                     alert(msg);
  24.                 });
  25.             });
  26.  
  27.         });
  28.     </script>
  29.     <table id="witchroute_date_display" cellspacing="5" cellpadding="5" border="0" style="width:97%; text-align:left;">
  30.         <thead>
  31.             <tr id="witchroute_date_display_heading">
  32.                 <th>Start</th>
  33.                 <th>Ende</th>
  34.                 <th>Preis</th>
  35.                 <th>Pl&auml;tze frei</th>
  36.                 <th>Pl&auml;tze Verf&uuml;gbar</th>
  37.                 <th>Actions</th>
  38.             </tr>
  39.         </thead>
  40.         <tbody id="witchroute_date_display_body">
  41.             <?php include('date-display-table.html'); ?>
  42.         </tbody>
  43.     </table>
  44. <?php else:?>
  45. <p>
  46.     <strong>Zur Zeit sind keine Termine festgelegt!</strong>
  47. </p>
  48. <?php endif;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement