
I had a query that I wanted to make into a nested query. (bad idea) I had this in my html in a button statement. value="!Earthdawn~ charID: @{character_id}~ ?{What Function|Attune,TuneMatrix: Spell: @{SP_RowID}|Create a pseudo matrix & Attune,TuneMatrix: Share: @{SP_RowID}}" Which asks a dropdown with two options, Attune and Create a pseudo matrix and Attune. It worked fine. Now I thought that all I had to do (and all the documentation I can find still says to do this) was add a 2nd query and then replace all the } | and "," with the html replacements. value="!Earthdawn~ charID: @{character_id}~ ?{What Function|Attune,TuneMatrix: Spell|Create a pseudo matrix & Attune,TuneMatrix: Share: ?{whatever|Standard,Std|Enhanced,Enh}}: @{SP_RowID}" However it did not work and I kept getting all the 2nd queries options added to the first with other errors. Finally I found that what works is to also escape all the & so that it looks like as follows. value="!Earthdawn~ charID: @{character_id}~ ?{What Function|Attune,TuneMatrix: Spell|Create a pseudo matrix & Attune,TuneMatrix: Share: ?{whatever|Standard,Std|Enhanced,Enh}}: @{SP_RowID}" I guess this is not so much of a question as a WTF! Did this change? When? Why is the documentation still saying the old way. Or is it just me?