LinkedInAttic / Backbone.TableView

Backbone View to render collections as tables
Apache License 2.0
71 stars 17 forks source link

Template Fixes #15

Closed ataki closed 11 years ago

ataki commented 11 years ago

This fix is for html issues for filter templates.

When using a button option filter, clicking on the button was triggering a submit event to be fired. Because the html was within a form, the form was getting submitted accidentally. button type=button fixes this.

The dropdown template html's option tag was also being closed with /button instead of /option, which messed up rendering somewhat.

jpbottaro commented 11 years ago

Thanks for the patch!