backbone.marionette icon indicating copy to clipboard operation
backbone.marionette copied to clipboard

The Backbone Framework

Results 40 backbone.marionette issues
Sort by recently updated
recently updated
newest added

### Description the getOption method have falsy check for keyName and this may lead for some unexpected results. link to source: https://github.com/marionettejs/backbone.marionette/blob/0b383151057fb2728f9db98afbc26a614cbc8eb7/src/common/get-option.js#L7 example: ```js const falsyKey = 0; const view...

### Description I was trying to sort my CollectionView with different types of comparators, and the behavior was kind of confusing and inconsistent to the documentation. Specifically I was looking...

docs
help wanted

If you call `getRegion` during a `region` before `isRendered()` is `true` you'll get a callstack error. We should throw a better error in these situations

bug

### Description Currently the best place to assume a view is ready to do most things is `onRender` (with the exception of needing to know the view is in the...

enhancement

If we want to replace `trigger` with `triggerMethod` https://github.com/marionettejs/backbone.marionette/issues/2508 ... it will really need to support the same API. `this.trigger('foo bar')` will trigger both `foo` and `bar` `this.triggerMethod('foo bar')` will...

feat:events

### Description Currently `triggerMethod` looks for a matching method in the options through a call to `getOption` before looking in instance. We should consider removing this feature: 1- triggerMethod is...

discussion
major
feat:events

DO NOT MERGE This PR serves as a migration guide for moving to https://github.com/marionettejs/marionette with the exception of Radio integration. But it should make relevent breaking changes more obvious

We have a good start with making live examples, but we have to do more work to cover all docs by them. Here pages without live examples - [ ]...

docs

When I'm using Marionette, I'll occasionally make errors such as accessing a region that doesn't exist e.g. ``` javascript var MyView = Marionette.LayoutView.extend({ regions: { main: '.main-hook' }, onRender: function()...

discussion
help wanted

When using nested views that have dom events in both the parent and child, it might happen that a dom event triggered in the child view will call also call...

feat:events