summaryrefslogtreecommitdiffstats
path: root/qx08/source/class/tr/ui/Cellrenderer.js
diff options
context:
space:
mode:
Diffstat (limited to 'qx08/source/class/tr/ui/Cellrenderer.js')
-rw-r--r--qx08/source/class/tr/ui/Cellrenderer.js51
1 files changed, 0 insertions, 51 deletions
diff --git a/qx08/source/class/tr/ui/Cellrenderer.js b/qx08/source/class/tr/ui/Cellrenderer.js
deleted file mode 100644
index 79edf4d..0000000
--- a/qx08/source/class/tr/ui/Cellrenderer.js
+++ /dev/null
@@ -1,51 +0,0 @@
-/* ************************************************************************
-
- Tr Frontend
-
- Author:
- * Tobias Oetiker
-
-************************************************************************ */
-
-/* ************************************************************************
-#module(Tr)
-************************************************************************ */
-
-/**
- * A configurable cell renderre
- */
-qx.Class.define('tr.ui.Cellrenderer', {
- extend : qx.ui.table.cellrenderer.Number,
-
-
- /**
- * Format a number with a configurable number of fraction digits
- * and add optional pre and postfix.
- * @param digits {Integer} how many digits should there be. Default is 0.
- * @param prefix {String} optional prefix.
- * @param postfix {String} optional postfix.
- */
- construct : function(digits, postfix, prefix) {
- if (digits == undefined) {
- digits = 0;
- }
-
- this.base(arguments);
- var format = new qx.util.format.NumberFormat();
-
- format.set({
- maximumFractionDigits : digits,
- minimumFractionDigits : digits
- });
-
- if (postfix != undefined) {
- format.setPostfix(postfix);
- }
-
- if (prefix != undefined) {
- format.setPrefix(prefix);
- }
-
- this.setNumberFormat(format);
- }
-}); \ No newline at end of file