Hello:

In Ext.Net 2.5.2 there used to be a Local property in the GridFilters class:


        /// <summary>
        /// True to use Ext.data.Store filter functions (local filtering) instead of the default server side filtering.
        /// </summary>
        [Meta]
        [ConfigOption]
        [Category("Config Options")]
        [DefaultValue(false)]
        [NotifyParentProperty(true)]
        [Description("True to use Ext.data.Store filter functions (local filtering) instead of the default server side filtering.")]
        public virtual bool Local
        {
            get
            {
                return this.State.Get<bool>("Local", false);
            }
            set
            {
                this.State.Set("Local", value);
            }
        }
What happened to this property in Ext.Net 4?

Thanks