Hi Andreas,
As quoted from Andreas Hocevar <[EMAIL PROTECTED]>:
> Gertjan van Oosten wrote:
> > When does
> > node.firstChild.nodeValue not work exactly? And when does
> > getNodeValue(node)
> > not return the equivalent of node.firstChild.nodeValue? My
> > impression/assumption was that the tw
Gertjan van Oosten wrote:
> As quoted from Andreas Hocevar:
>
>> I think replacing firstChild.nodeValue with getNodeValue() was the most
>> effort, and I am not sure if this was a good idea, because
>> Jean-Sebastien was referring to parsing context properties when he said
>> that firstChild.nod
As quoted from Andreas Hocevar:
> I think replacing firstChild.nodeValue with getNodeValue() was the most
> effort, and I am not sure if this was a good idea, because
> Jean-Sebastien was referring to parsing context properties when he said
> that firstChild.nodeValue does not work.
I do not under
Gertjan,
thanks for your efforts!
Gertjan van Oosten wrote:
> Done this for widgets, tools, models, examples and util.
> Also used getNodeValue() and Mapbuilder.parseBoolean() where
> appropriate.
>
I think replacing firstChild.nodeValue with getNodeValue() was the most
effort, and I am not
Andreas,
As quoted from Andreas Hocevar <[EMAIL PROTECTED]>:
> This issue is now addressed in http://jira.codehaus.org/browse/MAP-500,
> [...]
> TODO: use it in all widgets, tools and models. Volunteers are welcome!
Done this for widgets, tools, models, examples and util.
Also used getNodeValue(
Hi,
Currently, every widget, tool and model script picks its config
properties by using something like
var propertyNode = widgetNode.selectSingleNode("mb:myProperty");
this.property = propertyNode ? propertyNode.firstChild.nodeValue() :
"default";
Not only that firstChild.nodeValue does not wo