Changeset 7150
- Timestamp:
- 05/13/08 14:36:29 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/vector-behavior/lib/OpenLayers/Protocol/WFS/v1_0_0.js
r7143 r7150 290 290 return OpenLayers.Request.POST({ 291 291 url: this.url, 292 callback: OpenLayers.Console.log, //quick fix,293 292 data: data 294 293 }); … … 332 331 create: function(feature) { 333 332 var node = this.format.createElementNSPlus("wfs:Insert"); 334 335 // TODO: this should deal with alt formats 336 node.appendChild(this.layer.format.createFeatureXML(feature,true)); 333 334 node.appendChild(this.format.createFeatureXML(feature,true)); 337 335 338 336 return node;
