/// <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.
 /// </summary>
 /// <param name="store"><p>The store to unbind from</p>
 /// </param>
 public virtual void unbindStoreListeners(Ext.data.AbstractStore store)
 {
 }
 /// <summary>
 /// Template method, it is called when an existing store is unbound
 /// from the current instance.
 /// </summary>
 /// <param name="store"><p>The store being unbound</p>
 /// </param>
 /// <param name="initial"><p>True if this store is being bound as initialization of the instance.</p>
 /// </param>
 public virtual void onUnbindStore(Ext.data.AbstractStore store, bool initial)
 {
 }