1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-07 16:32:39 +02:00

Updated 3.2 Column operations (markdown)

koalyptus 2017-01-15 19:00:52 +11:00
parent d6526625aa
commit fa8135869a

@ -242,8 +242,10 @@ var tf = new TableFilter('my-table-id');
<pre>
tf.emitter.on(
['before-column-calc'],
function(tf, colOps, colIndex, values, operation, precision){
console.log(tf, colOps, colIndex, values, operation, precision);
function(tf, colOps, colIndex,
values, operation, precision){
console.log(tf, colOps, colIndex,
values, operation, precision);
});
</pre>
</td>
@ -266,8 +268,10 @@ var tf = new TableFilter('my-table-id');
<pre>
tf.emitter.on(
['column-calc'],
function(tf, colOps, colIndex, result, operation, precision){
console.log(tf, colOps, colIndex, result, operation, precision);
function(tf, colOps, colIndex,
result, operation, precision){
console.log(tf, colOps, colIndex,
result, operation, precision);
});
</pre>
</td>