Usage:
Attach a multi-column picker object to an element with jQuery.
ex. $('#mcp').multicolpicker();
This creates a basic 10 row, 5 column picker table.
The default starting value is 0.
The default starting increment is 100.
Overriding the default
You can use the following options to override the default table settings:
prefix: Adds text before the number
suffix: Adds text after the number
startval: Change the initial value
minval: Set the minimum value
maxval: Set the maximum value
increment: Change the increment value
rows: Change the number of rows
The following example will create a 5 row, 5 column table starting from $10000 and incrementing by 100.
ex. $('#mcp').multicolpicker({prefix:'$',startval:10000, minval:4000, maxval:26000, rows:5});