diff --git a/lib/jquery.jtable.js b/lib/jquery.jtable.js index 869af246..151ea9fd 100644 --- a/lib/jquery.jtable.js +++ b/lib/jquery.jtable.js @@ -741,7 +741,11 @@ THE SOFTWARE. return this._getDisplayTextForDateRecordField(field, fieldValue); } else if (field.type == 'checkbox') { return this._getCheckBoxTextForFieldByValue(fieldName, fieldValue); - } else if (field.options) { //combobox or radio button list since there are options. + } else if (field.type == 'currency') { + var curr = field.currencyType || '€'; + var money = fieldValue || 0; + return curr + '' + money.toFixed(2); + }else if (field.options) { //combobox or radio button list since there are options. var options = this._getOptionsForField(fieldName, { record: record, value: fieldValue,