makes it easy to build remote backed tables w/ ember-cli-pagination and bootstrap
This README outlines the details of collaborating on this Ember addon.
TODO
TODO
Here is a list of the replaceable components and their respective defaults
titleComponent
(table-pagination.table-title
): Display the table title if specified- should be a component with a body. The body will be replaced by the title.
bodyComponent
(table-pagination.table-body
): wrap up the table body- no parameters, will wrap all the component's HTML except the title
toolbarComponent
(table-pagination.table-toolbar
): wrap up the toolbar- no parameters, its body will host the quick-search, item/page selector as well as the page selector
toolsComponent
(table-pagination.table-tools
): receive the following parameters:allowQuickSearch
(boolean): either or not the quick-search should be enabledsearchString
(string): two-way binding to the quick-search valueperPage
(integer): two-way binding to the item/page valuerefresh
(action): action passed on to therefresh
action oftable-pagination
ThetoolsComponent
should display these values and offer the user a way to manipulatesearchString
andperPage
pagerComponent
(table-pagination.table-pager
): should display the current page number and allow the user to change pagecount
(integer): total amount of pagescurrent
(integer): current page number (1-indexed)changePage
(action): action passed on thechangePage
action of the component if the pagination is remotely handled else the component will deal with the page change by itself.
contentComponent
(table-pagination.table-content
):
Note: to allow for more flexibility when overriding the component, a special parameter will be passed to each of the overridable sub-components that can be used to pass arbitrary parameters from the main component to any of its sub-components. These parameters are called: titleParams
, bodyParams
, toolbarParams
, toolsParams
, pagerParams
& contentParams
.
git clone
this repositorynpm install
bower install
ember server
- Visit your app at http://localhost:4200.
ember test
ember test --server
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.