insert new row should be go to second row of B4X table
You can't simply insert a record below the selected record because the B4XTable data displayed is stored in a SQLite in-memory database and the record goes to the end of the table.
But what you can do is add an internal sort to the column in question say in this case it is called: 'Make'. When you define the columns and their data type that column will be defined like this:
B4XTable1.AddColumn("Make", B4XTable1.COLUMN_TYPE_TEXT).InternalSortMode = "ASC"
After you insert the new record, the table gets automatically sorted by that column and the record is displayed below the one with the same make.