void IPostBackEventHandler.RaisePostBackEvent(string eventArgument)
        {
            if (AutoPostBack && !Page.IsPostBackEventControlRegistered)
            {
                Page.AutoPostBackControl = this;
            }

            WidgetState.RaisePostBackEvent(eventArgument);
        }