svn commit: r656329 - /ofbiz/trunk/framework/images/webapp/images/selectall.js

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r656329 - /ofbiz/trunk/framework/images/webapp/images/selectall.js

adrianc
Author: adrianc
Date: Wed May 14 09:32:00 2008
New Revision: 656329

URL: http://svn.apache.org/viewvc?rev=656329&view=rev
Log:
Some Ajax JavaScript helper functions. See https://issues.apache.org/jira/browse/OFBIZ-1648 for details.

Modified:
    ofbiz/trunk/framework/images/webapp/images/selectall.js

Modified: ofbiz/trunk/framework/images/webapp/images/selectall.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/images/webapp/images/selectall.js?rev=656329&r1=656328&r2=656329&view=diff
==============================================================================
--- ofbiz/trunk/framework/images/webapp/images/selectall.js (original)
+++ ofbiz/trunk/framework/images/webapp/images/selectall.js Wed May 14 09:32:00 2008
@@ -208,17 +208,81 @@
     }
 }
 
-// NOTE: REQUIRES prototype.js
-// On the form element make sure you have something like:
-//   id="theFormId"
-// On the submit button elements make sure you have something like:
-//   onclick="javascript:submitAjaxForm($('theFormId'), 'id-of-div-surrounding-or-on-form', '<@ofbizUrl>createExampleForm</@ofbizUrl>');"
-function submitFormInBackground(form, areaName, submitUrl) {
+// ===== Ajax Functions - based on protoype.js ===== //
+
+/** Update an area (HTML container element).
+  * @param areaId The id of the HTML container to update
+  * @param target The URL to call to update the HTML container
+  * @param targetParams The URL parameters
+*/
+function ajaxUpdateArea(areaId, target, targetParams) {
+    new Ajax.Updater(areaId, target, {parameters: targetParams});
+}
+
+/** Update multiple areas (HTML container elements).
+  * @param areaCsvString The area CSV string. The CSV string is a flat array in the
+  * form of: areaId, target, target parameters [, areaId, target, target parameters...].
+*/
+function ajaxUpdateAreas(areaCsvString) {
+    var areaArray = areaCsvString.split(",");
+    var numAreas = areaArray.length / 3;
+    for (var i = 0; i < numAreas; i = i + 3) {
+        new Ajax.Updater(areaArray[i], areaArray[i + 1], {parameters: areaArray[i + 2]});
+    }
+}
+
+/** Update an area (HTML container element) periodically.
+  * @param areaId The id of the HTML container to update
+  * @param target The URL to call to update the HTML container
+  * @param targetParams The URL parameters
+  * @param interval The update interval, in seconds.
+*/
+function ajaxUpdateAreaPeriodic(areaId, target, targetParams, interval) {
+    new Ajax.PeriodicalUpdater(areaId, target, {parameters: targetParams, frequency: interval});
+}
+
+/** Submit request, update multiple areas (HTML container elements).
+  * @param target The URL to call to update the HTML container
+  * @param targetParams The URL parameters
+  * @param areaCsvString The area CSV string. The CSV string is a flat array in the
+  * form of: areaId, target, target parameters [, areaId, target, target parameters...].
+*/
+function ajaxSubmitRequestUpdateAreas(target, targetParams, areaCsvString) {
+    updateFunction = function() {
+        ajaxUpdateAreas(areaCsvString);
+    }
+    new Ajax.Request(target, {
+        parameters: targetParams,
+        onComplete: updateFunction });
+}
+
+/** Submit form, update an area (HTML container element).
+  * @param form The form element
+  * @param areaId The id of the HTML container to update
+  * @param submitUrl The URL to call to update the HTML container
+*/
+function submitFormInBackground(form, areaId, submitUrl) {
+    submitFormDisableSubmits(form);
+    updateFunction = function() {
+        new Ajax.Updater(areaId, submitUrl);
+    }
+    new Ajax.Request(form.action, {
+        parameters: form.serialize(true),
+        onComplete: updateFunction });
+}
+
+/** Submit form, update multiple areas (HTML container elements).
+  * @param form The form element
+  * @param areaCsvString The area CSV string. The CSV string is a flat array in the
+  * form of: areaId, target, target parameters [, areaId, target, target parameters...].
+*/
+function ajaxSubmitFormUpdateAreas(form, areaCsvString) {
     submitFormDisableSubmits(form);
-    new Ajax.Request(form.action, { parameters: form.serialize(true) });
-    new Ajax.Updater(areaName, submitUrl);
+    ajaxSubmitRequestUpdateAreas(form.action, form.serialize(true), areaCsvString);
 }
 
+// ===== End of Ajax Functions ===== //
+
 function submitFormDisableSubmits(form) {
     for (var i=0;i<form.length;i++) {
         var formel = form.elements[i];