|
Community Map Builder 21 Aug 2007 | |||||||
PREV NEXT | FRAMES NO FRAMES |
No overview generated for 'FeatureList.js'
Class Summary | |
FeatureList |
/* License: LGPL as per: http://www.gnu.org/copyleft/lesser.html $Id: FeatureList.js 3091 2007-08-09 12:21:54Z gjvoosten $ */ // Ensure this object's dependancies are loaded. mapbuilder.loadScript(baseDir+"/widget/WidgetBaseXSL.js"); /** * Functions to render and update a FeatureList from GML. * @constructor * @base WidgetBaseXSL * @author Cameron Shorter * @param widgetNode The widget's XML object node from the configuration document. * @param model The model object that this widget belongs to. */ function FeatureList(widgetNode, model) { WidgetBaseXSL.apply(this,new Array(widgetNode, model)); /** * Set the value of an attribute from the FeatureList. * @param objRef Reference to this object. * @param xpath Xpath reference to the attribute in the GML. * @param value New attribute value. */ this.setAttr=function(objRef,xpath,value){ objRef.model.setXpathValue(objRef.model,xpath,value); } }
|
Community Map Builder 21 Aug 2007 | |||||||
PREV NEXT | FRAMES NO FRAMES |