This project is not really maintained. See You should not use Ember Bootstrap. If you want to take over, please let us know.
Ember Bootstrap is set of UI elements styled using Twitter Bootstrap (currently version 2) toolkit to use with Ember.js. The ultimate goal is to provide all elements from the Bootstrap toolkit.
Please respect the following convention : bug reports go in the issue tracker. Feature and big refactoring discussions go in the google group.
- Modal panes - Bootstrap.ModalPane
- Nav lists - Bootstrap.NavList
- Pills - Bootstrap.Pills
- Alert messages - Bootstrap.AlertMessage
- Block alert messages - Bootstrap.BlockAlertMessage
- Progress bars - Bootstrap.ProgressBar
- Labels - Bootstrap.Label
- Badges - Bootstrap.Badge
- Wells - Bootstrap.Well
- Breadcrumbs - Bootstrap.Breadcrumbs
- Pager - Bootstrap.Pager
- Dropdown - Bootstrap.ButtonDropdown
- Text Field - Bootstrap.Forms.TextField
- Text Area - Bootstrap.Forms.TextArea
- Select - Bootstrap.Forms.Select
- Uneditable - Bootstrap.UneditableInput
Bootstrap.ModalPane.popup({
heading: "Sample modal pane",
message: "Sample message...",
primary: "OK",
secondary: "Cancel",
showBackdrop: true,
showCloseButton: true,
animateBackdropIn: {method: "fadeIn", options: "slow"}, //options can also be an object -> {duration: 1000, done: function(){console.log("done")}
animateBackdropOut: {method: "fadeOut"}, //also accepts options
callback: function(opts, event) {
if (opts.primary) {
// primary button was pressed
} else if (opts.secondary) {
// secondary button was pressed
} else {
// close was pressed
}
}
});
<script type="text/x-handlebars">
{{view Bootstrap.NavList
contentBinding="SampleApp.navController.content"
selectionBinding="SampleApp.navController.selection"}}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.Tabs
contentBinding="SampleApp.tabsController.content"
selectionBinding="SampleApp.tabsController.selection"}}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.Pills
contentBinding="SampleApp.pillsController.content"
selectionBinding="SampleApp.pillsController.selection"}}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.AlertMessage type="success" message="You did it!"}}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.ProgressBar isStriped=true isAnimated=true
progressBinding="SampleApp.progressController.progress"}}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.Label type="important" content="Important"}}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.Badge type="success" contentBinding="SampleApp.TodoController.completed"}}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.Well content="Important note about Ember and Bootstrap" }}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.Breadcrumbs contentBinding="SampleApp.breadcrumbsController.content" }}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.Pager contentBinding="SampleApp.pagerController.content" }}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.Pagination contentBinding="SampleApp.paginationController.content" selectionBinding="SampleApp.paginationController.selection" }}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.ButtonDropdown itemsBinding="content" label="My Little Label"}}
</script>
Where the itemsBinding
array is similar to the following in its structure:
content: [
Ember.Object.create({ label: 'First Link', actionName: 'testAction', disabled: false }),
Ember.Object.create({ label: 'Second Link', actionName: 'anotherAction', disabled: true })
]
actionName
specifies the action to invoke when the item is clicked on. Additionally, items can be enabled/disabled dynamically, and the list will update itself.
<script type="text/x-handlebars">
{{view Bootstrap.Forms.TextField valueBinding="myObject.content" label="content" help="This is an optional help message"}}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.Forms.TextArea valueBinding="myObject.content" label="content"}}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.Forms.Select contentBinding="content" selectionBinding="selected" label="content" optionLabelPath="content.name" optionValuePath="content.internalName"}}
</script>
<script type="text/x-handlebars">
{{view Bootstrap.Forms.UneditableInput valueBinding="myObject.content" label="content"}}
</script>
- Run
rake
to build Ember Bootstrap. Three builds will be placed in thedist/
directory.
ember-bootstrap.js
,ember-bootstrap.min.js
andember-bootstrap.prod.js
- unminified and minified builds as well as a production ready build with assertions, deprecations and warnings stripped.
If you are building under Linux, you will need a JavaScript runtime for minification.
You can either install nodejs or gem install therubyracer
.
To run unit tests, run bundle exec rackup
from the root directory and visit http://localhost:9292/
MIT License. Copyright 2012 Jiri Zajpt, Damien Mathieu
- Jiri Zajpt [email protected]
- Damien Mathieu [email protected]
- Franck Verrot [email protected]
- Bradley Priest [email protected]