Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion lib/jquery.jtable.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down