You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by mt...@apache.org on 2006/11/02 01:21:54 UTC

svn commit: r470161 - /incubator/xap/trunk/WebContent/examples/widgets/AttributeTester.js

Author: mturyn
Date: Wed Nov  1 17:21:53 2006
New Revision: 470161

URL: http://svn.apache.org/viewvc?view=rev&rev=470161
Log:
Changed new <listItem> namespace to be xal's not dojo's, so that inserts can work.

Modified:
    incubator/xap/trunk/WebContent/examples/widgets/AttributeTester.js

Modified: incubator/xap/trunk/WebContent/examples/widgets/AttributeTester.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/widgets/AttributeTester.js?view=diff&rev=470161&r1=470160&r2=470161
==============================================================================
--- incubator/xap/trunk/WebContent/examples/widgets/AttributeTester.js (original)
+++ incubator/xap/trunk/WebContent/examples/widgets/AttributeTester.js Wed Nov  1 17:21:53 2006
@@ -85,7 +85,7 @@
 
 AttributeTester.prototype.appendListItem = function(element) {
 	alert("append");
-	var newElement = element.getOwnerDocument().createElement("listItem", null, "http://www.dojotoolkit.org/");
+	var newElement = element.getOwnerDocument().createElement("listItem", null, "http://www.openxal.org/xal");
 	newElement.setAttribute("text", "NEW INSERT");
 	newElement.setAttribute("value","NEW VALUE");
 	newElement.setAttribute("selected", "true");