Project

General

Profile

1
/*
2
Author:       Cameron Shorter
3
License:      LGPL as per: http://www.gnu.org/copyleft/lesser.html
4

    
5
$Id: TransactionResponse.js 1671 2005-09-20 02:37:54Z madair1 $
6
*/
7

    
8
// Ensure this object's dependancies are loaded.
9
mapbuilder.loadScript(baseDir+"/widget/WidgetBaseXSL.js");
10

    
11
/**
12
 * Render the response from a WFS request.
13
 * @constructor
14
 * @base WidgetBaseXSL
15
 * @author Cameron Shorter
16
 * @param widgetNode  The widget's XML object node from the configuration document.
17
 * @param model       The model object that this widget belongs to.
18
 */
19
function TransactionResponse(widgetNode, model) {
20
  WidgetBaseXSL.apply(this,new Array(widgetNode, model));
21
}
(127-127/145)