18 lines
592 B
PHP
18 lines
592 B
PHP
<?php js::set('type', $type)?>
|
|
<?php js::set('orderBy', $orderBy)?>
|
|
<?php js::set('lang.confirmDelete', $lang->confirmDelete);?>
|
|
<?php js::set('lang.deleteing', $lang->deleteing);?>
|
|
<script>
|
|
$(function()
|
|
{
|
|
$('#<?php echo $type?>').addClass('active');
|
|
$('.reviewPass').attr('data-toggle', 'ajax');
|
|
|
|
$("input[name^='overtimeIDList']").remove();
|
|
$('.checkbox-inline, .radio-inline').removeClass('checkbox-inline');
|
|
|
|
var link = createLink('overtime', 'export', "mode=all&orderBy=" + orderBy + "&type=" + type);
|
|
$('#menuActions .btn-link').attr('href', link);
|
|
})
|
|
</script>
|