Ext.Net.DataView.IPostBackDataHandler C# (CSharp) Method

IPostBackDataHandler() private method

private IPostBackDataHandler ( string postDataKey, NameValueCollection postCollection ) : bool
postDataKey string
postCollection System.Collections.Specialized.NameValueCollection
return bool
        bool IPostBackDataHandler.LoadPostData(string postDataKey, NameValueCollection postCollection)
        {
            this.HasLoadPostData = true;

            string val = postCollection[this.ConfigID.ConcatWith("_SN")];

            if (val != null)
            {
                this.selectedRows = JSON.Deserialize<SelectedRowCollection>(val);
            }

            return false;
        }

Same methods

DataView::IPostBackDataHandler ( ) : void