mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-03-06 08:11:12 -05:00
Tom git-svn-id: svn+ssh://jekkos@svn.code.sf.net/p/opensourcepos/code/@24 c3eb156b-1dc0-44e1-88ae-e38439141b53
86 lines
2.5 KiB
PHP
86 lines
2.5 KiB
PHP
<?php $this->load->view("partial/header"); ?>
|
|
<script type="text/javascript">
|
|
$(document).ready(function()
|
|
{
|
|
init_table_sorting();
|
|
enable_select_all();
|
|
enable_checkboxes();
|
|
enable_row_selection();
|
|
enable_search('<?php echo site_url("$controller_name/suggest")?>','<?php echo $this->lang->line("common_confirm_search")?>');
|
|
enable_delete('<?php echo $this->lang->line($controller_name."_confirm_delete")?>','<?php echo $this->lang->line($controller_name."_none_selected")?>');
|
|
|
|
});
|
|
|
|
function init_table_sorting()
|
|
{
|
|
//Only init if there is more than one row
|
|
if($('.tablesorter tbody tr').length >1)
|
|
{
|
|
$("#sortable_table").tablesorter(
|
|
{
|
|
sortList: [[1,0]],
|
|
headers:
|
|
{
|
|
0: { sorter: false},
|
|
3: { sorter: false}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
function post_giftcard_form_submit(response)
|
|
{
|
|
if(!response.success)
|
|
{
|
|
set_feedback(response.message,'error_message',true);
|
|
}
|
|
else
|
|
{
|
|
//This is an update, just update one row
|
|
if(jQuery.inArray(response.giftcard_id,get_visible_checkbox_ids()) != -1)
|
|
{
|
|
update_row(response.giftcard_id,'<?php echo site_url("$controller_name/get_row")?>');
|
|
set_feedback(response.message,'success_message',false);
|
|
|
|
}
|
|
else //refresh entire table
|
|
{
|
|
do_search(true,function()
|
|
{
|
|
//highlight new row
|
|
hightlight_row(response.giftcard_id);
|
|
set_feedback(response.message,'success_message',false);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
<div id="title_bar">
|
|
<div id="title" class="float_left"><?php echo $this->lang->line('common_list_of').' '.$this->lang->line('module_'.$controller_name); ?></div>
|
|
<div id="new_button">
|
|
<?php echo anchor("$controller_name/view/-1/width:$form_width",
|
|
"<div class='big_button' style='float: left;'><span>".$this->lang->line($controller_name.'_new')."</span></div>",
|
|
array('class'=>'thickbox none','title'=>$this->lang->line($controller_name.'_new')));
|
|
?>
|
|
</div>
|
|
</div>
|
|
<?php echo $this->pagination->create_links();?>
|
|
<div id="table_action_header">
|
|
<ul>
|
|
<li class="float_left"><span><?php echo anchor("$controller_name/delete",$this->lang->line("common_delete"),array('id'=>'delete')); ?></span></li>
|
|
<li class="float_right">
|
|
<img src='<?php echo base_url()?>images/spinner_small.gif' alt='spinner' id='spinner' />
|
|
<?php echo form_open("$controller_name/search",array('id'=>'search_form')); ?>
|
|
<input type="text" name ='search' id='search'/>
|
|
</form>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div id="table_holder">
|
|
<?php echo $manage_table; ?>
|
|
</div>
|
|
<div id="feedback_bar"></div>
|
|
<?php $this->load->view("partial/footer"); ?>
|