Example #1
0
        //-------------------------------------------------------------------------------------- CSS & HTML --
        public new static string GetCssTree()
        {
            string rtn = "";

            rtn += Panel_UserUI_ResetPassword.GetCssTree();
            rtn += Panel_UserUI_GroupItem.GetCssTree();
            rtn += GetCssRoot();
            return(rtn);
        }
Example #2
0
        //----------------------------------------------------------------------------------------------------
        public void Instantiate_Sub()
        {
            this.jRoot = J("<div class='Panel_UserUI jRoot AutoResize'>");
            this.jRoot.append(this.GetHtmlRoot());

            this.ResetPasswordUI           = new Panel_UserUI_ResetPassword();
            this.ResetPasswordUI.ViewModel = this.ViewModel;
            this.ResetPasswordUI.Instantiate();
            this.ResetPasswordUI.Close();
            this.ResetPasswordUI.OnClose.After.AddHandler(this, "ResetPasswordUI_Close", 0);
            jF(".Holder_ResetPassword").html("").append(this.ResetPasswordUI.jRoot);
        }