PHPackages                             andrelohmann-silverstripe/bootstrap\_orderable\_frontend - 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. [Framework](/categories/framework)
4. /
5. andrelohmann-silverstripe/bootstrap\_orderable\_frontend

ActiveSilverstripe-module[Framework](/categories/framework)

andrelohmann-silverstripe/bootstrap\_orderable\_frontend
========================================================

Frontend orderable paginated lists

1.0.1(10y ago)170BSD-3-ClausePHPPHP &gt;=5.3.2

Since Aug 4Pushed 10y ago1 watchersCompare

[ Source](https://github.com/andrelohmann/silverstripe-bootstrap_orderable_frontend)[ Packagist](https://packagist.org/packages/andrelohmann-silverstripe/bootstrap_orderable_frontend)[ RSS](/packages/andrelohmann-silverstripe-bootstrap-orderable-frontend/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (1)Versions (5)Used By (0)

bootstrap\_orderable\_frontend
==============================

[](#bootstrap_orderable_frontend)

Maintainers
-----------

[](#maintainers)

- Andre Lohmann (Nickname: andrelohmann)

Requirements
------------

[](#requirements)

Silverstripe 3.2.x

Overview
--------

[](#overview)

This Module provides a nice paradigm to build orderable collections on the frontend The orderable list will be paginated and ajaxified (

Usage
-----

[](#usage)

create an OrderablePaginatedList in your controller action and add an ajax statement

```
class MyController extends Controller {

	...

	public function orderableobjects(){

        $List = MyOrderableObject::get()->sort('Sort');
        $MyOrderableObjects = new OrderablePaginatedList($List, $this->request);
		$MyOrderableObjects->setPageLength(10)->setSortField('Sort');
        // if the sortable list is a many many relation
        // $MyOrderableObjects->setOwner($OwnerObject)->setManyMany('NAME_OF_MANY_MANY_RELATION');

		if($this->request->isAjax()) {
			return $this->customise(array(
                "Objects" => $MyOrderableObjects->process(), // process the ordering after OrderablePaginatedList has all information it needs (pageLength, SortField, Owner, ManyManyRelation)
				"URL" => $this->request->getURL(true) // add this for BackURL parameter
            ))->renderWith('OrderableObjectsList');
		}

		return $this->customise(new ArrayData(array(
			"Title" => "My Orderable Objects",
			"Objects" => $MyOrderableObjects,
			"URL" => $this->request->getURL(true) // add this for BackURL parameter
		)))->renderWith(
			array('Page_orderableobjects', $this->stat('template_main'), $this->stat('template'))
        );
	}
```

use templates/Layout/Page\_orderableobjects.ss and templates/Includes/OrderableObjectsList.ss as base templates to build your own orderable paginated lists

### Notice

[](#notice)

This repository uses the git flow paradigm. After each release cycle, do not forget to push tags, master and develop to the remote origin

```
git push --tags
git push origin develop
git push origin master

```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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.

###  Release Activity

Cadence

Every ~115 days

Total

3

Last Release

3703d ago

Major Versions

v0.1 → v1.0.02015-09-01

### Community

Maintainers

![](https://www.gravatar.com/avatar/e2ee634b511ac11c5e05be625ba61e157ee3056293926c296171b441196cc444?d=identicon)[andrelohmann](/maintainers/andrelohmann)

---

Top Contributors

[![andrelohmann](https://avatars.githubusercontent.com/u/617168?v=4)](https://github.com/andrelohmann "andrelohmann (8 commits)")

---

Tags

frameworksilverstripe

### Embed Badge

![Health badge](/badges/andrelohmann-silverstripe-bootstrap-orderable-frontend/health.svg)

```
[![Health](https://phpackages.com/badges/andrelohmann-silverstripe-bootstrap-orderable-frontend/health.svg)](https://phpackages.com/packages/andrelohmann-silverstripe-bootstrap-orderable-frontend)
```

###  Alternatives

[silverstripe/framework

The SilverStripe framework

7213.5M2.5k](/packages/silverstripe-framework)[juzaweb/cms

Juzaweb CMS is a Content Management System (CMS) developed based on Laravel Framework and web platform whose sole purpose is to make your development workflow simple again. Project develop by Juzaweb

187571.2k](/packages/juzaweb-cms)[silverstripe/behat-extension

SilverStripe framework extension for Behat

32564.2k5](/packages/silverstripe-behat-extension)[axllent/silverstripe-version-truncator

Automatically delete old versioned Silverstripe records from the database

3673.1k3](/packages/axllent-silverstripe-version-truncator)[oddnoc/silverstripe-artefactcleaner

Find and optionally delete unused tables, columns and indexes in a SilverStripe database

1419.0k3](/packages/oddnoc-silverstripe-artefactcleaner)

PHPackages © 2026

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