Displays a standard re-order cell that can be used by the individual to drag and drop the row to change the order in the list. Example <ReorderColumn /> Properties This column provides default values for the following standard properties: nameformatComponentheaderClassitemClasswidth onOrderChanged Type: (item: Record<string, unknown>, beforeItem: Record<string, unknown> | null): (void | Promise<void> | boolean | Promise<boolean>)Optional Called when the order of an item has changed. The first parameter is the row item that was moved. The second parameter is the row item it was dropped in front of or null if it was dropped at the end of the grid. The grid rows will already be updated when this is called so you only need to handle any additional logic, such as updating the database. If false is returned then the the re-order operation is aborted. If a Promise is returned then the grid will wait until it is resolved before allowing another re-order operation.