[multiview,refactor][xs]: switch to SlickGrid as default view.

This commit is contained in:
Rufus Pollock 2012-06-28 23:57:26 +01:00
parent aa1a362bb2
commit 2b3f6e1c5a
2 changed files with 1 additions and 2 deletions

View File

@ -114,7 +114,7 @@ my.MultiView = Backbone.View.extend({
this.pageViews = [{
id: 'grid',
label: 'Grid',
view: new my.Grid({
view: new my.SlickGrid({
model: this.model,
state: this.state.get('view-grid')
}),

View File

@ -30,7 +30,6 @@ test('get State', function () {
equal(state.get('readOnly'), false);
equal(state.get('currentView'), null);
equal(state.get('query').size, 100);
deepEqual(state.get('view-grid').hiddenFields, []);
deepEqual(state.get('view-graph').group, null);
equal(state.get('backend'), 'memory');
ok(state.get('url') === url);