mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Working on #598
This commit is contained in:
parent
aa94e786ba
commit
373c2e7736
@ -3,6 +3,7 @@
|
|||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
{!! Former::open($entityType . 's/bulk')->addClass('listForm') !!}
|
{!! Former::open($entityType . 's/bulk')->addClass('listForm') !!}
|
||||||
|
|
||||||
<div style="display:none">
|
<div style="display:none">
|
||||||
{!! Former::text('action') !!}
|
{!! Former::text('action') !!}
|
||||||
{!! Former::text('public_id') !!}
|
{!! Former::text('public_id') !!}
|
||||||
@ -23,7 +24,8 @@
|
|||||||
</label>
|
</label>
|
||||||
|
|
||||||
<div id="top_right_buttons" class="pull-right">
|
<div id="top_right_buttons" class="pull-right">
|
||||||
<input id="tableFilter" type="text" style="width:140px;margin-right:17px;background-color: white !important" class="form-control pull-left" placeholder="{{ trans('texts.filter') }}"/>
|
<input id="tableFilter" type="text" style="width:140px;margin-right:17px;background-color: white !important"
|
||||||
|
class="form-control pull-left" placeholder="{{ trans('texts.filter') }}" value="{{ Input::get('filter') }}"/>
|
||||||
@if (Auth::user()->isPro() && $entityType == ENTITY_INVOICE)
|
@if (Auth::user()->isPro() && $entityType == ENTITY_INVOICE)
|
||||||
{!! Button::normal(trans('texts.quotes'))->asLinkTo(URL::to('/quotes'))->appendIcon(Icon::create('list')) !!}
|
{!! Button::normal(trans('texts.quotes'))->asLinkTo(URL::to('/quotes'))->appendIcon(Icon::create('list')) !!}
|
||||||
{!! Button::normal(trans('texts.recurring'))->asLinkTo(URL::to('/recurring_invoices'))->appendIcon(Icon::create('list')) !!}
|
{!! Button::normal(trans('texts.recurring'))->asLinkTo(URL::to('/recurring_invoices'))->appendIcon(Icon::create('list')) !!}
|
||||||
@ -120,6 +122,10 @@
|
|||||||
}, 500);
|
}, 500);
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if ($('#tableFilter').val()) {
|
||||||
|
filterTable($('#tableFilter').val());
|
||||||
|
}
|
||||||
|
|
||||||
window.onDatatableReady = function() {
|
window.onDatatableReady = function() {
|
||||||
$(':checkbox').click(function() {
|
$(':checkbox').click(function() {
|
||||||
setBulkActionsEnabled();
|
setBulkActionsEnabled();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user