I've been attempting to assign a value to the select box as shown below:
<dx-select-box
[items]="reportingProject"
id="ReportingProj"
[text]="reportingProject"
[readOnly]="true"
>
The reportingProject variable is located in the Component like this:
constructor(private psService: ProjectShipmentService, private pdComp: ProjectDetailsComponent) {
debugger;
this.reportingProject = this.pdComp.rProjectNumber;
this.projectSalesOrder = this.pdComp.rSalesOrder;
Despite having data in the reportingProject variable, it doesn't display on the page and the selectbox always appears empty.