2015-09-08 19:39:13 +02:00
|
|
|
%h2= @user.name
|
2015-09-09 19:37:23 +02:00
|
|
|
%table#transactions.display.responsive.no-wrap{data: { source: user_path(@user) }}
|
2015-09-08 19:39:13 +02:00
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Amount
|
2015-09-09 18:17:55 +02:00
|
|
|
%th Issuer
|
2015-09-08 19:39:13 +02:00
|
|
|
%th Message
|
2015-09-08 20:45:32 +02:00
|
|
|
%th Peer
|
2015-09-08 19:39:13 +02:00
|
|
|
%th Time
|
2015-09-09 17:14:06 +02:00
|
|
|
%tr
|
|
|
|
%td.bound.input-listen
|
|
|
|
%input.lower-bound{type: 'number', placeholder: 'lower', class: 'pure-u-1-5'}
|
|
|
|
= "<= Amount <="
|
|
|
|
%input.upper-bound{type: 'number', placeholder: 'upper', class: 'pure-u-1-5'}
|
|
|
|
%td.input-listen
|
2015-09-09 18:17:55 +02:00
|
|
|
%input{type: 'text', placeholder: 'Filter on Issuer'}
|
2015-09-09 17:14:06 +02:00
|
|
|
%td.input-listen
|
|
|
|
%input{type: 'text', placeholder: 'Filter on Message'}
|
|
|
|
%td.input-listen
|
|
|
|
%input{type: 'text', placeholder: 'Filter on Peer'}
|
|
|
|
%td.bound.input-listen
|
|
|
|
%input.lower-bound{type: 'date', placeholder: 'after'}
|
|
|
|
= "<= Time <="
|
|
|
|
%input.upper-bound{type: 'date', placeholder: 'before'}
|
2015-09-08 19:39:13 +02:00
|
|
|
%tbody
|
2015-09-08 20:45:32 +02:00
|
|
|
|
|
|
|
:javascript
|
|
|
|
$(document).ready(function() {
|
2015-09-09 17:14:06 +02:00
|
|
|
var table = $('#transactions').DataTable({
|
2015-09-09 14:46:06 +02:00
|
|
|
processing: true,
|
|
|
|
serverSide: true,
|
|
|
|
searching: true,
|
|
|
|
ordering: false,
|
|
|
|
ajax: $('#transactions').data('source'),
|
|
|
|
pagingType: 'full_numbers',
|
|
|
|
columns: [
|
|
|
|
{ data: 'amount', name: 'Amount' },
|
2015-09-09 18:17:55 +02:00
|
|
|
{ data: 'issuer', name: 'Issuer' },
|
2015-09-09 14:46:06 +02:00
|
|
|
{ data: 'message', name: 'Message' },
|
|
|
|
{ data: 'peer', name: 'Peer' },
|
|
|
|
{ data: 'time', name: 'Time' }
|
2015-09-09 19:37:23 +02:00
|
|
|
],
|
|
|
|
autoWidth: false
|
2015-09-09 17:14:06 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
var tds = $('.input-listen');
|
|
|
|
var i = 0;
|
|
|
|
table.columns().every(function() {
|
|
|
|
var column = this
|
|
|
|
tds.eq(i).find('input').on('keyup change', function() {
|
|
|
|
var value = null;
|
|
|
|
var td = $(this).parent();
|
|
|
|
if(td.hasClass('bound')) {
|
|
|
|
value = td.find('.lower-bound').val() + '~' + td.find('.upper-bound').val();
|
|
|
|
} else {
|
|
|
|
value = $(this).val()
|
|
|
|
}
|
|
|
|
if(column.search() !== value) {
|
|
|
|
column.search(value).draw();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
i = i + 1;
|
2015-09-09 14:46:06 +02:00
|
|
|
});
|
2015-09-08 20:45:32 +02:00
|
|
|
});
|