例如,对于ConfirmButtonExtender扩展器来说,如果想动态更改此扩展器控件的ConfirmText属性值,可以通过ConfirmText属性的Get和Set属性方法实现。其中,源码中的定义如下:
get_ConfirmText : function() {
/// <value type="String">
/// The text to show when you want to confirm the click. (Note: HTML entities can be used here (ex: "
" for new-line))
/// </value>
return this._ConfirmTextValue;
},
set_ConfirmText : function(value) {
if (this._ConfirmTextValue != value) {
this._ConfirmTextValue = value;
this.raisePropertyChanged('ConfirmText');
}
},
于是,在客户端脚本中,我们可以通过如下编码实现动态指定ConfirmButtonExtender扩展器控件的属性ConfirmText的值:
$find("ConfirmExtender's behaviorID").set_ConfirmText("your text");