Hello,
Can anyone tell me the correct javascript syntax fro returning the total number of current values a parameter has set?
Here is my sample that doesn't deem to work:
result = queried report...
ReportObject = Result.Item(1);
ReportInterface = ReportObject.PluginInterface("report"
EachParam = ReportInterface.ReportParameters.Item(1);
//this doesn't work
NumValues = EachParam.Currentvalues.Count;
//neither does this
NumValues = EachParam.Currentvalues.ReportParameterValues.Count;
//and neither does this
NumValues = EachParam.ReportParameterValues.Count;
Thanks!
Can anyone tell me the correct javascript syntax fro returning the total number of current values a parameter has set?
Here is my sample that doesn't deem to work:
result = queried report...
ReportObject = Result.Item(1);
ReportInterface = ReportObject.PluginInterface("report"
EachParam = ReportInterface.ReportParameters.Item(1);
//this doesn't work
NumValues = EachParam.Currentvalues.Count;
//neither does this
NumValues = EachParam.Currentvalues.ReportParameterValues.Count;
//and neither does this
NumValues = EachParam.ReportParameterValues.Count;
Thanks!