Me again!
Apologies for bothering you yet again, but i am having trouble doing something really simple on my XPage…
I have a combobox field : “ProbType” which you can select a Type of System, say “Lotus Notes”, I have a DBlookup on another field “System Name” here is the ‘Values’ {Computed} code :
@DbLookup(“”, “(SysByType)”, FLSCall.getValue(“ProbType”), 2);
I have tried different variations of this and narrowed it down to the “FLSCall.GetValue” bit. i have tried “FLSCall.ProbType” and all sorts! If i replace this section with “lotus Notes” it works fine.
I also set the default value of the ProbType field to “Lotus Notes” so the page would load that value first, this still didn’t work.
Can anyone point me in the right direction?
Thank You.
Jamie
P.S> I have also tried :
var ctry = FLSCall.getValue(“ProbType”);
var lst1 = @DbLookup(@DbName(),“(SysByType)”,ctry,2);
@Explode(lst1,“,”)