/// <summary>
 /// Unbinds listeners from this component to the store. By default it will remove
 /// anything bound by the bindStoreListeners method, however it can be overridden
 /// in a subclass to provide any more complicated handling.
 /// @protected
 /// @param {Ext.data.AbstractStore} store The store to unbind from
 /// </summary>
 public void unbindStoreListeners(AbstractStore store){}
 /// <summary>
 /// Binds a store to this instance.
 /// @param {Ext.data.AbstractStore} store The store to bind (may be null to unbind the existing store).
 /// @param {Boolean} initial (Optional) true to not remove listeners
 /// </summary>
 public void bindStore(AbstractStore store, bool initial){}