I have the following grid:
All columns show the data, except
<EjsGrid id="Grid" DataSource="@vehicles" AllowPaging="true">
<GridPageSettings PageSizes="true"></GridPageSettings>
<GridColumns>
<GridColumn Field="@nameof(VehicleIJ.VehicleShortName)" HeaderText="Name"></GridColumn>
<GridColumn Field="@nameof(VehicleIJ.VehicleBrand.VehicleBrandID)" HeaderText="Brand"></GridColumn>
<GridColumn Field="@nameof(VehicleIJ.VehicleModel.ModelName)" HeaderText="Model"></GridColumn>
</GridColumns>
</EjsGrid>
Both fields are strings, If I use another field which is an int: VehicleIJ.VehicleBrand.VehicleBrandID it shows the data.
Note that the fields that are not working are the ones inside another field.