0

所有,请原谅我对 ASP.NET Ajax 不熟悉。我知道Create方法是将 html 元素附加到 ajax 组件。但我不知道如何将它与当前组件分离。并附上另一个。

假设有一个元素ctl00_PlaceHolderMain_UserRegistration_txbPassword1已附加到一个组件类型AccelaWebControlExtender.HelperBehavior,并且创建的组件 id 是ctl00_PlaceHolderMain_UserRegistration_txbPassword1_helper_bhv。代码如下所示。请审查它。

Sys.Application.add_init(function() {
    $create(AccelaWebControlExtender.HelperBehavior, {"closeTitle":"Close","id":"ctl00_PlaceHolderMain_UserRegistration_txbPassword1_helper_bhv","isRTL":false,"title":"Help"}, null, null, $get("ctl00_PlaceHolderMain_UserRegistration_txbPassword1"));
});

我认为首先我应该通过 id 检索组件,然后进行分离和附加工作。希望有人能给我一些帮助。谢谢。

4

1 回答 1

1

经过一番研究,我发现它是Extend Web server control that encapsulates a client behavior在Asp.net Ajax中调用的,我发现组件的附件是由Asp.net自动完成的。我们可以看到Sys.Application.add_init(function()代码是由 Asp.net 自动生成在 asp 页面中的。所以如果我们想要自定义Web Server Control的原始行为,我相信它可以用Javascript OOP方式(旧的和相同的)来制作。

例如:如果原来的行为代码是吹的。

// Register the namespace for the control.
Type.registerNamespace('Samples');

//
// Define the behavior properties.
//
Samples.FocusBehavior = function(element) { 
    Samples.FocusBehavior.initializeBase(this, [element]);

    this._highlightCssClass = null;
    this._nohighlightCssClass = null;
}

//
// Create the prototype for the behavior.
//
Samples.FocusBehavior.prototype = {
    initialize : function() {
        Samples.FocusBehavior.callBaseMethod(this, 'initialize');

        $addHandlers(this.get_element(), 
                     { 'focus' : this._onFocus,
                       'blur' : this._onBlur },
                     this);

        this.get_element().className = this._nohighlightCssClass;
    },

    dispose : function() {
        $clearHandlers(this.get_element());

        Samples.FocusBehavior.callBaseMethod(this, 'dispose');
    },

    //
    // Event delegates
    //
    _onFocus : function(e) {
        if (this.get_element() && !this.get_element().disabled) {
            this.get_element().className = this._highlightCssClass;          
        }
    },

    _onBlur : function(e) {
        if (this.get_element() && !this.get_element().disabled) {
            this.get_element().className = this._nohighlightCssClass;          
        }
    },


    //
    // Behavior properties
    //
    get_highlightCssClass : function() {
        return this._highlightCssClass;
    },

    set_highlightCssClass : function(value) {
        if (this._highlightCssClass !== value) {
            this._highlightCssClass = value;
            this.raisePropertyChanged('highlightCssClass');
        }
    },

    get_nohighlightCssClass : function() {
        return this._nohighlightCssClass;
    },

    set_nohighlightCssClass : function(value) {
        if (this._nohighlightCssClass !== value) {
            this._nohighlightCssClass = value;
            this.raisePropertyChanged('nohighlightCssClass');
        }
    }
}

// Optional descriptor for JSON serialization.
Samples.FocusBehavior.descriptor = {
    properties: [   {name: 'highlightCssClass', type: String},
                    {name: 'nohighlightCssClass', type: String} ]
}

// Register the class as a type that inherits from Sys.UI.Control.
Samples.FocusBehavior.registerClass('Samples.FocusBehavior', Sys.UI.Behavior);

if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();

我认为我们可以重写Javascript ObjectSamples.FocusBehavior及其原型对象的一些方法来实现自定义。

例如 。

我可以Samples.FocusBehavior.prototype._onFocus像这样在脚本中覆盖。

Samples.FocusBehavior.prototype._onFocus = function (e) {
    alert('test');
    if (this.get_element() && !this.get_element().disabled) {
        this.get_element().className = this._highlightCssClass;
    }
};

只需确保在浏览器原始代码之后解析此代码即可。
我不确定这是否是正确的方法。我希望有人可以帮助验证它。非常感谢。

这是它的教程。请审查它。干杯。

于 2013-06-13T16:24:37.813 回答