Yep. I ran into a similar problem with an XSL stylesheet that did XML to
JSON conversion. I ended up ripping out all of the numeric detection stuff
and just kept it all strings so I could deal with it reliably on the
JavaScript side.

Glad you got it worked out.

--Erik


On 8/16/07, Terry B <[EMAIL PROTECTED]> wrote:
>
>
> and here are the lines i have been searching for (i think, havent
> tried it but should be)
>
>                         if (issimplevalue(arg) and isnumeric(arg)){
>                                 return ToString(arg);
>                         }
>                         if (issimplevalue(arg)){
>                                 return '"' & JSStringFormat(ToString(arg))
> & '"';
>                         }
>
> just comment out the 1st three lines should do the trick....
>
>
>
>
>

Reply via email to