display all leases without searching
Fire up search automatically showing all leases without manually filtering
This commit is contained in:
parent
0347920fdb
commit
0f7476be8d
|
@ -19,7 +19,13 @@
|
|||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
/*
|
||||
$( document ).ready(function() {
|
||||
var e = jQuery.Event("keypress");
|
||||
e.which = 13; // Enter
|
||||
e.keyCode = 13;
|
||||
$("#lease_search_criteria").trigger(e);
|
||||
});
|
||||
/*
|
||||
$('#display-leases').DataTable({
|
||||
dom: 'tip',
|
||||
responsive: true,
|
||||
|
@ -27,4 +33,4 @@
|
|||
"aaSorting": []
|
||||
});
|
||||
*/
|
||||
</script>
|
||||
</script>
|
||||
|
|
Loading…
Reference in New Issue