Ublaboo\DataGrid\Row::formatDibiRowKey PHP Method

formatDibiRowKey() private method

Key may contain ".", get rid of it (+ the table alias)
private formatDibiRowKey ( string $key ) : string
$key string
return string
    private function formatDibiRowKey($key)
    {
        if ($offset = strpos($key, '.')) {
            return substr($key, $offset + 1);
        }
        return $key;
    }