Project

General

Profile

1
/*
2
License: LGPL as per: http://www.gnu.org/copyleft/lesser.html
3
$Id: FilterAttributes.js 2527 2007-01-18 16:30:04Z gjvoosten $
4
*/
5

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

    
9
/**
10
 * Parses a WFS DescribeFeatureType response to and provides a form to specify
11
 * filter parameters.
12
 * @constructor
13
 * @base WidgetBaseXSL
14
 * @param widgetNode  The widget's XML object node from the configuration document.
15
 * @param model       The model object that this widget belongs to.
16
 */
17
function FilterAttributes(widgetNode, model) {
18
  WidgetBaseXSL.apply(this,new Array(widgetNode, model));
19
}
(36-36/145)