0
mdonogma created
If we create an entity with example 5 dropdowns the Int values are stored as selected item values.
The question : how do we ensure the GridView shows the textual description of selected items rather than Int values
Is there an example of this in abp
1 Answer(s)
-
0
@Mdonogma, you need to return string values for your grid data from server. In order to do that, you need to join your entity with it's related entities.
Thanks.