Rev 2662 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<table style="width:auto !important;" class="widefat fixed tags" border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th class="manage-column sortable">
<a id="name" class="sortable <?php if($this->view['filter']['sort'] == 'name' && $this->view['filter']['order'] == 'orderup') { echo 'active orderdown'; } elseif($this->view['filter']['sort'] == 'name' && $this->view['filter']['order'] == 'orderdown'){ echo 'active orderup'; } ?>" href="/">
<span><?php echo __('Zahlungsart', 'wpsg')?></span>
<span class="sorting-indicator"></span>
</a>
</th>
<th class="manage-column th-right">
<a id="total" class="sortable <?php if($this->view['filter']['sort'] == 'total' && $this->view['filter']['order'] == 'orderup') { echo 'active orderdown'; } elseif($this->view['filter']['sort'] == 'total' && $this->view['filter']['order'] == 'orderdown'){ echo 'active orderup'; } ?>" href="/">
<span><?php echo __('Umsatz in', 'wpsg').' '.$this->get_option('wpsg_currency'); ?></span>
<span class="sorting-indicator"></span>
</a>
</th>
<th class="manage-column th-right">
<a id="percent" class="sortable <?php if($this->view['filter']['sort'] == 'percent' && $this->view['filter']['order'] == 'orderup') { echo 'active orderdown'; } elseif($this->view['filter']['sort'] == 'percent' && $this->view['filter']['order'] == 'orderdown'){ echo 'active orderup'; } ?>" href="/">
<span><?php echo __('Prozent', 'wpsg')?></span>
<span class="sorting-indicator"></span>
</a>
</th>
</tr>
</thead>
<tbody class="the-list">
<?php foreach ($this->view['chart']['data']['records'] as $data) { ?>
<tr class="alternate">
<td><strong><?php echo wpsg_hspc($data['name']); ?></strong></td>
<td class="td-right"><?php echo wpsg_ff($data['total']); ?></td>
<td class="td-right"><?php echo wpsg_ff($data['percent']); ?></td>
</tr>
<?php } ?>
</tbody>
</table>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.sortable').bind('click', function(){
var order = '';
if(jQuery(this).hasClass('orderup'))
{
jQuery('#wpsg_statistics_order').val('orderup');
}
else
{
jQuery('#wpsg_statistics_order').val('orderdown');
}
jQuery('#wpsg_statistics_sort').val(jQuery(this).attr('id'));
jQuery.ajax( {
url: '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_statistics&noheader=1&do=sorting',
type: 'post',
data: jQuery('#wpsg_statistics_form').serialize(),
success: function(data) {
jQuery('#table-data').html(data);
}
} );
return false;
});
});
</script>