1

DevExpressがコントロールに使用するClientInstanceNameプロパティを自分のサーバーコントロールに実装するにはどうすればよいですか?

ClientIDプロパティは読み取り専用です。つまり、HTMLが生成されるまで待ってから、name属性を置き換える必要がありますか?

これをc#で行う方法はありますか、それともJavaScriptで行う必要がありますか?

前もって感謝します。

4

1 に答える 1

1

これが私が思いついたものです(提案や改善をいただければ幸いです):

            private String _ClientInstanceName;

            /// <summary>
            /// Gets or Sets the client instance name.
            /// </summary>
            [
            Bindable(true), Category("Client-Side"),
            DefaultValue(""), Description("The ClientInstanceName can be used to reference this control on the client.")
            ]
            public String ClientInstanceName
            {
                get
                {
                    return _ClientInstanceName;
                }
                set
                {
                    _ClientInstanceName= value;
                }
            }


        protected override void OnPreRender(EventArgs e)
        {
            base.OnPreRender(e);

            //Register startup script for creating JavaScript reference to this server control object.
            if (this.ClientInstanceName.Length > 0) { registerClientInstanceName(this.ClientInstanceName, this.ClientID); }
        }

        /// <summary>
        /// Create a JavaScript reference to the Object with ClientID using the ClientInstanceName property.
        /// Based on: http://msdn.microsoft.com/en-us/library/asz8zsxy.aspx
        /// </summary>
        /// <param name="ClientInstanceName"></param>
        private void registerClientInstanceName(String ClientInstanceName, String ClientID)
        {
            // Define the name and type of the client scripts on the page.
            String csname1 = "ClientInstanceNameScript";
            Type cstype = this.GetType();

            // Get a ClientScriptManager reference from the Page class.
            ClientScriptManager cs = Page.ClientScript;

            // Check to see if the startup script is already registered.
            if (!cs.IsStartupScriptRegistered(cstype, csname1))
            {
                StringBuilder cstext1 = new StringBuilder();
                cstext1.Append("<script type=text/javascript>");
                cstext1.Append("window['" + ClientInstanceName + "']=document.getElementById('" + ClientID + "');");
                cstext1.Append("</script>");

                cs.RegisterStartupScript(cstype, csname1, cstext1.ToString());
            }
        }
于 2012-07-18T14:20:01.923 に答える