Causes by misprint in BalloonPopupExtenderBehavior.pre.js
set_displayOnClick: function (value)
{
if (this.displayOnClick != value) {
this.displayOnClick = value;
this.raisePropertyChanged("DisplayOnClick");
}
},
Must be this._displayOnClick
WORKAROUND
Somewhere in page (after links to ACT scripts) add next lines:
<script type="text/javascript">
Sys.Extended.UI.BalloonPopupControlBehavior.prototype.set_displayOnClick = function (value) {
if (this._displayOnClick != value) {
this._displayOnClick = value;
this.raisePropertyChanged("DisplayOnClick");
}
}
</script>
Comments: Hi! Thank you for your report. We fixed this issue and this fix will be available in the next release of the AJAX Control Toolkit. Best regards, Fadil
set_displayOnClick: function (value)
{
if (this.displayOnClick != value) {
this.displayOnClick = value;
this.raisePropertyChanged("DisplayOnClick");
}
},
Must be this._displayOnClick
WORKAROUND
Somewhere in page (after links to ACT scripts) add next lines:
<script type="text/javascript">
Sys.Extended.UI.BalloonPopupControlBehavior.prototype.set_displayOnClick = function (value) {
if (this._displayOnClick != value) {
this._displayOnClick = value;
this.raisePropertyChanged("DisplayOnClick");
}
}
</script>
Comments: Hi! Thank you for your report. We fixed this issue and this fix will be available in the next release of the AJAX Control Toolkit. Best regards, Fadil