22 lines
824 B
PHP
22 lines
824 B
PHP
<? echo $javascript->link('job_grid'); ?>
|
|
|
|
<? /*
|
|
echo $paginator->counter(array(
|
|
'format' => __('Page %page% of %pages%, showing %current% Jobs out of %count% total, starting on record %start%, ending on %end%', true)
|
|
));
|
|
?>
|
|
|
|
<div class="paging">
|
|
|
|
<?php echo $paginator->prev('<< '.__('previous', true), array(), null, array('class'=>'disabled'));?>
|
|
| <?php echo $paginator->numbers();?>
|
|
<?php echo $paginator->next(__('next', true).' >>', array(), null, array('class'=>'disabled'));?>
|
|
</div>
|
|
|
|
*/ ?>
|
|
|
|
|
|
<button id="editButton" class="actionButtons">Edit Selected Jobs</button><button id="saveButton" class="actionButtons">Save Jobs</button><button id="cancelButton" class="actionButtons">Cancel Editing (changes will not be saved)</button>
|
|
<table id="grid" style="overflow: hidden;"></table>
|
|
|
|
<div id="gridpager"></div>
|