2017-07-25 2 views
0

Ich versuche Zeilenfilter in ExtJS hinzuzufügen und ich erhalte diesen Fehler in FireFox:ExtJS GridHeaderFilters kein Konstruktor

TypeError: Ext.ux.grid.GridFilters is not a constructor 

Ich bin weg von this Modell gehen. Gibt es eine bessere Möglichkeit zum Hinzufügen von Zeilenfiltern zu einem XMLStore?

fiddle

plugins: [new Ext.ux.grid.GridHeaderFilters()], 
     columns: [{ 
       text: 'Title', 
       width: 150, 
       dataIndex: 'Title', 
       filter: [{xtype:"textfield"},{xtype:"textfield"}] 
      }, { 
       text: 'Description', 
       flex: 1, 
       dataIndex: 'Description', 
       filter: [{xtype:"textfield"},{xtype:"textfield"}] 
      }, { 
       text: 'Modified', 
       width: 90, 
       dataIndex: 'Modified', 
       xtype: 'datecolumn', 
       format: 'm/d/Y' 

      }], 
      filter: { 
       xtype: "combo", 
       mode: "local", 
       store: [["A","Type1"],["B","Type2"]], 
       triggerAction: "all" 
      } 

Antwort