Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
backbone.marionette アプリケーション内で backgrid を使用するにはどうすればよいですか?
It's as simple as it looks. Just add the Backgrid view to any region:
MyApp.addRegions({ someRegion: "#some-div" }); var columns .... var userList .... MyApp.someRegion.show( new Backgrid.Grid({ columns : columns, collection : userList }) );