Question Andrew Makinson · Jan 25, 2017

<FORM> <OnLoadForm> multiple parameters

Using a <FORM>

The OnLoadForm attribute calls a method but doesnt allow definition...

It seems to send pKey and accepts back pValues

Method LoadForm(pKey As %String,
                ByRef pValues As %String) As %Status

 

Is there any way to send more than just pKey as I need multiple values when loading the form.

Comments

Alexander Koblov · Mar 15, 2017

I think you can construct pKey as $ListBuild of different values and parse them back in LoadForm.

I don't think it's possible to add other parameters to LoadForm callback

0