Skip to content

Commit

Permalink
Statusbar 2.6.0
Browse files Browse the repository at this point in the history
Limit calculation
  • Loading branch information
GBonnaire committed Apr 25, 2023
1 parent 120ea28 commit e05ac0e
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 31 deletions.
9 changes: 7 additions & 2 deletions plugins/JSSV8/dist/statusbar.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 22 additions & 1 deletion plugins/JSSV8/src/statusbar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,18 @@ jSpreadsheet, a lightweight Vanilla JavaScript plugin, can help you create excep
<td><code>Boolean or String</code></td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>showAddCalculateButton</code></td>
<td>For show all time calculate button</td>
<td><code>Boolean</code></td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>limitCalculation</code></td>
<td>Define limit Calculation for autocalculate. 0 = no limit</td>
<td><code>Integer</code></td>
<td><code>0</code></td>
</tr>
<tr>
<td><code>defaultQuantity</code></td>
<td>Define defautlQuantity on input</td>
Expand Down Expand Up @@ -141,6 +153,14 @@ you can use jSuites dictionary for translate this plugin
<td><code>label</code></td>
<td>Add</td>
</tr>
<tr>
<td><code>labelTooMuchData</code></td>
<td>Too much data</td>
</tr>
<tr>
<td><code>labelButtonCalculate</code></td>
<td>Calculate</td>
</tr>
</tbody>
</table>

Expand Down Expand Up @@ -191,7 +211,8 @@ jspreadsheet(document.getElementById('spreadsheet'), {
plugins: [
...
{ name:'statusBar', plugin:jss_statusbar, options: {
showAddRowButton: false,
showAddRowButton: false,
limitCalculation: 1000,
formulas:{
"COUNT":"=COUNT({range})",
"My Formula": function(instance, parameters, values) {
Expand Down
Loading

0 comments on commit e05ac0e

Please sign in to comment.