Ext.Net.DataViewBase.CheckStore C# (CSharp) Method

CheckStore() protected method

protected CheckStore ( ) : void
return void
        protected virtual void CheckStore()
        {
            if (this.IsDynamic && !string.IsNullOrEmpty(this.StoreID))
            {
                return;
            }

            if (this.GetStore() == null)
            {
                throw new StoreNotFoundException("Please define a store for the DataView with ID='" + this.ID + "'");
            }
        }