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

OnBeforeClientInitHandler() private method

private OnBeforeClientInitHandler ( ) : void
return void
        protected override void OnBeforeClientInitHandler()
        {
            if (this.StoreID.IsNotEmpty() && this.Store.Primary != null)
            {
                throw new Exception(string.Format("Please do not set both the StoreID property on {0} and <Store> inner property at the same time.", this.ID));
                
            }
            
            base.OnBeforeClientInitHandler();
            this.PrepareData.Args = new string[] {"data"};
        }