href with parameter

How can I place hyperlinks in the menu bar with a query parameter like this?


the structure accepts this form
but dose not accept this:

Regards

There was a bug in menu. I’ve attached the latest version
dhtmlxmenu.zip (16.8 KB)

Thanks Alexandra…

Hi

I’ve updated my version with the one you gave, and it supports great one parameter, but i’ve problem with two, like this :

Popup?NumTABLE=FormF470LDP1&F921IND=_1

Is it my bad, or a is it problem like the previous one ?

Hi,

if you set link in the xml, you need to place the url into CDATA tag:

it’s a bit more complicated than this…

In fact, i use XSLT (1.0) to transform my xml output to the dhtmlx template. So my link is in a xml node, and then i set it into the tag like this :

<![CDATA[]]>

<xsl:value-of select=“LINK”/>

<![CDATA[]]>

Set a second CDATA becomes hard…

k i reply to my own problem :

To set a second CDATA into CDATA, i had to define a tag with special characters, like this :

<![CDATA[]]><![CDATA[

<xsl:value-of select=“FTC0VAL”/>
]]><![CDATA[]]>

The output will be :

So it matches with the dhtmlx template…