Widget:PledgeTracker: Difference between revisions
Jump to navigation
Jump to search
removed quotes around integers |
refactor variables |
||
Line 46: | Line 46: | ||
<script type="text/javascript"> | <script type="text/javascript"> | ||
$(document).ready(function () { | $(document).ready(function () { | ||
var pledgeGoalAmount = <!--{$pledgeGoal|validate:int|default:0}-->; | var pledgeGoalAmount = <!--{$pledgeGoal|validate:int|default:0}-->; | ||
var amountPledged = 0; | var amountPledged = 0; | ||
var amountCollected = 0; | var amountCollected = 0; | ||
$('.wikitable:eq( | $('.wikitable:eq(<!--{$tableIndex|validate:int|default:0}-->) tr:gt(0)').each( | ||
function(index, value) { | function(index, value) { | ||
var cols = $(value).children(); | var cols = $(value).children(); | ||
var pledgeAmountCol = cols.eq( | var pledgeAmountCol = cols.eq(<!--{$pledgeAmountColumn|validate:int|default:2}--> - 1); | ||
var pledgeAmountValue = parseFloat(pledgeAmountCol.text().substring(2)) || 0; | var pledgeAmountValue = parseFloat(pledgeAmountCol.text().substring(2)) || 0; | ||
var pledgePaidCol = cols.eq( | var pledgePaidCol = cols.eq(<!--{$pledgePaidColumn|validate:int|default:3}--> - 1); | ||
var pledgePaidValue = pledgePaidCol.text().trim().toLowerCase(); | var pledgePaidValue = pledgePaidCol.text().trim().toLowerCase(); | ||
Revision as of 00:16, 12 June 2014
This widget tracks the current amount pledged and collected for a pledge drive on a wiki page which makes use of table with specific columns.
Using this widget
You can insert a pledge tracker with the following wiki code:
{{#widget:PledgeTracker|tableIndex=1|pledgeGoal=100|pledgeAmountColumn=2|pledgePaidColumn=3}}
Parameters
- tableIndex
- The index of the table on the page containing the pledges (1 = the first table). Default:
1
- pledgeGoal
- The goal amount for the pledge drive. Default:
0
- pledgeAmountColumn
- The index of the column within the pledges table which contains the pledge amount (1 = the first column). Default:
2
- pledgePaidColumn
- The index of the column within the table which indicates if the pledge amount has been paid (1 = the first column). If the column contains 'yes' or 'y' (case insensitive) then the pledge amount is considered to have been paid, any other content is considered as not paid. Default:
3
Example
Who | Amount | Paid? | Method Paid |
---|---|---|---|
Bob | £30 | Yes | BACS |
Alice | £50 | Yes | CASH |
Carol | £25 | No | BACS |