So I’ve got:
var view = this.parentView.control;
var param = view.getViewParameterByName("filterParameter");
param.parameterValue.upperBoundaryValue = Number(textbox1.control.value);
param.parameterValue.lowerBoundaryValue = ????;
I want the lower boundary value to be “Open Range Boundary” but I can’t get it to work. I’ve tried null and a dozen other attempts, but no luck. Any advice?
Side note: for whatever reason, if I set lower to 0 and upper to 1, it doesn’t return values exactly = 0 (yes I have the ‘include’ option checked). Could it be an integer vs float issue? The only lower boundary that works is the Open Range.