PHPackages                             samsonos9/async\_table9 - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. samsonos9/async\_table9

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

samsonos9/async\_table9
=======================

Render async table

012PHP

Since Aug 10Pushed 9y ago1 watchersCompare

[ Source](https://github.com/rmolodyko/symfony_async_table)[ Packagist](https://packagist.org/packages/samsonos9/async_table9)[ RSS](/packages/samsonos9-async-table9/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

\#For start using the bundle:

\##1. Add config file config.yml

```
async_table:
views: ~

```

\##2. Create query and pass it to create table service

```
$query = $em->getRepository('...')->getQuery($request->query->get('filter'));

$tableData = [
    ['title' => 'Order ID', 'selector' => 'p.id', 'filter' => ['name' => 'order_id']],
    ['title' => 'Template ID', 'selector' => 't.id', 'filter' => [
        'name' => 'template_id',
        'type' => FilterMetadata::TYPE_SELECT,
        'options' => [5, 6],
        'empty_placeholder' => 'Select filter'
    ]],
    ['title' => 'Template Name'],
    ['title' => 'Status'],
    ['title' => 'Payment status'],
];

$table = $this->get('samsonos.async.table')->createTable('BackBundle:Handler/Order:table_content.html.twig', [
        'query' => $query,
        'page' => $request->query->get('page', 1)
    ], $tableData, [
        'isCompanyGroup' => $this->get('manager.domain')->isCompanyGroupMode()
    ]
);

```

Where BackBundle:Handler/Order:table\_content.html.twig - is table content

```
% for entity in pagination %}

    {% set doc = entity.document.toArray() %}
    {{ entity.id }}
    {{ entity.template.id }}
    {{ doc[0].name }}
    {{ entity.textStatus }}
    ...

```

\##3. You can handle request from bundle js by:

```
if (null !== ($response = $this->get('samsonos.async.table')->handleContent($request, $table))) {
    return $response;
}

```

\##4. And simply render you view:

```
return $this->render('BackBundle:Handler/Order:list.html.twig', [
    'table' => $table,
]);

```

\##5. Use async\_table in twig template for rendering the table

```
{{ async_table(table) }}

```

\##6. Don't forget include js script

```
'@AsyncTableBundle/Resources/public/js/async-table.js'

```

Be happy:)

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 94.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/4399482?v=4)[Ruslan](/maintainers/rmolodyko)[@rmolodyko](https://github.com/rmolodyko)

---

Top Contributors

[![rmolodyko](https://avatars.githubusercontent.com/u/4399482?v=4)](https://github.com/rmolodyko "rmolodyko (18 commits)")[![vitalyiegorov](https://avatars.githubusercontent.com/u/586558?v=4)](https://github.com/vitalyiegorov "vitalyiegorov (1 commits)")

### Embed Badge

![Health badge](/badges/samsonos9-async-table9/health.svg)

```
[![Health](https://phpackages.com/badges/samsonos9-async-table9/health.svg)](https://phpackages.com/packages/samsonos9-async-table9)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
