0
maliming created
Support Team
Fullstack Developer
Report from https://github.com/abpframework/abp/issues/7951
Version: ABP Suite 4.2.1 User Interface: MVC Database Version: EF Core Javascript Alert: DataTables warning: table id= Table - Requested unknown parameter '.uOM' for row 0, column 5. For more information about this error, please see http://datatables.net/tn/4 Steps needed to reproduce the problem
- Create an entity that has a property the has all capital letters (UOM for unit of measure)
- Generate the Entity including the MVC UI
- Start a debug instance
- Click on the tab that contains the new entity
- This alert should pop up
The reason this occurs is that the variable in the datatable gets generated as ".uOM" whereas the actual value in the object is ".uom". To fix you simply change the variable in the dataTable to "******.uom"
Not a neck breaking bug but ever so slightly annoying