Ext.Net.ListFilter.SetValue C# (CSharp) Method

SetValue() private method

private SetValue ( string value ) : void
value string
return void
        public void SetValue(string[] value)
        {
            RequestManager.EnsureDirectEvent();

            if (this.ParentGrid != null)
            {
                this.ParentGrid.AddScript("{0}.getFilterPlugin().getFilter({1}).setValue({2});", this.ParentGrid.ClientID, JSON.Serialize(this.DataIndex), JSON.Serialize(value));
            }
        }
    }