Deep Link Parameter Question

Hi, I followed the information on the Servoy Wiki

Here’s the link I’m using:

http://127.0.0.1:8080/servoy-webclient/ … 1|125|2114

Basically, I want to send 3 arguments.

My issue is the argument puts all into the [0] argument… and doesn’t divide them up.

This is what I get:

Arguments {0:"67431|125|2114",length:1}

I know I could probably use some trickery code to parse it… but isn’t there a way to send it so it’s passed as separate arguments?

We are using Servoy 4.1.7

Thanks.

chico:
I know I could probably use some trickery code to parse it… but isn’t there a way to send it so it’s passed as separate arguments?

As far as I know this is it, arguments in a webclient aren’t split.

But if you do something like this, you’re all set I guess:

_arg = '' + arguments[0]; // make sure it's a string
_argSplit = _arg.split('|');

Best of all: no trickery code at all ;-)

Hope this helps