File: legacy/php-build/include/sheet/comparator.js

Recommend this page to a friend!
  Packages of ikhsan   jQuery Calx   legacy/php-build/include/sheet/comparator.js   Download  
File: legacy/php-build/include/sheet/comparator.js
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: jQuery Calx
Calculate form input values based on formulas
Author: By
Last change:
Date: 3 months ago
Size: 385 bytes
 

Contents

Class file image Download
sheet.fx.comparator = { greater: function(a, b){ return a > b; }, greaterEqual: function(a, b){ return a >= b; }, less: function(a, b){ return a < b; }, lessEqual : function(a, b){ return a <= b; }, equal: function(a,b){ return a == b; }, notEqual: function(a,b){ return a != b; } };