I am trying to get the grid to populate with data (currently only 1 record) using the WebApiAdapter. There is no indication of an issue except for the fact that it does not hit the WebApi Method at all and does not pull any data.
<SfDataManager Url="https://lifewirecore.local:44388/api/programs" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
<GridPageSettings PageSize="5"></GridPageSettings>
<GridColumns>
<GridColumn Field=@nameof(Data.Entities.Core.Program.ProgramName) HeaderText="Program Name" TextAlign="TextAlign.Left" Width="120"></GridColumn>
</GridColumns>
</SfGrid>
The method to the API when ran through the browser returns this:
However that method never gets hit when run through the application. The grid shows up properly, and looks like it's trying to do something, but never actually hits the method. There is also no error generated on either the browser or the client side, so I have no indication on what might actually be wrong.
If you can provide me with some additional information on things to look at, I would be appreciative.
Thanks!
Chico