Ext.Net.TimeField.LoadPostData C# (CSharp) Method

LoadPostData() private method

private LoadPostData ( string postDataKey, NameValueCollection postCollection ) : bool
postDataKey string
postCollection NameValueCollection
return bool
        protected override bool LoadPostData(string postDataKey, NameValueCollection postCollection)
        {
            this.HasLoadPostData = true;

            bool val = base.LoadPostData(postDataKey, postCollection);

            this.SuspendScripting();

            this.RawValue = this.SelectedItem.Value;

            if (this.SelectedItem.Value.IsEmpty())
            {
                this.Value = this.EmptyValue;
            }
            else
            {
                this.Value = this.SelectedItem.Value;
            }

            this.ResumeScripting();

            return val;
        }