I'm trying to figure out the most elegant way of bringing meteor and extjs together.
Obviously Ext has its own Ext.data.Store and Proxies to handle REST backends. Meteor has a publish/subscribe model which pushes updates automatically.
My first thought would be do write a custom "MeteorProxy" and to handle all the update events there. I'm not sure though this is wise in terms of filtering or sorting data. Ideally filtering should take place on the Meteor side because data sorts/filters ideally should persist across to other (non-ext) views of the data.
Would using MemoryProxy + some glue code be a better alternative?
Or are there newer ones as of ExtJS 5?