printable_output() for the patron editor, given that printing the Dojo here is proble...
authorphasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 12 Jul 2010 18:12:55 +0000 (18:12 +0000)
committerphasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 12 Jul 2010 18:12:55 +0000 (18:12 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@16912 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/web/js/ui/default/actor/user/register.js

index bea9fdf..eb432c7 100644 (file)
@@ -1274,6 +1274,20 @@ function uEditToggleRequired() {
     openils.Util.toggle('uedit-show-all');
 }
 
-
+function printable_output() {
+    var temp; var s = '=-=-=-=\r\n';
+    for (var idx in widgetPile) {
+        var w = widgetPile[idx];
+        var val = uEditWidgetVal(w);
+        var label = w.idlField.label;
+        if (temp != w._wtype) {
+            temp = w._wtype;
+            s += '-------\r\n';
+        }
+        s += label + ':\t' + (typeof val == 'object' ? '' : val) + '\r\n';
+    }
+    s += '=-=-=-=\r\n';
+    return s;
+}
 
 openils.Util.addOnLoad(load);