I feel like I’m missing something obvious here. But I’m trying to test the AutoQueryGrid with the Vue SPA template. I made a modification to the Bookings demo adding a new string property “BuildingName” to the ServiceModel.
public string BuildingName { get; set; } = default!;
And also added the property to the create and update requests.
I updated the client typescript dtos in the Vue SPA and rebuilt the project. The new property appears in the Locode interface, the API explorer, and the DataGrid page. But it’s not there in the AutoQueryGrid, or it’s Create or Update pages. I’ve deleted the templates from the sample, so it’s just a plain AutoQueryGrid:
<AutoQueryGrid type="Booking" />
The property does appear in the grid’s CSV export. What am I missing?