I couldn't understand the purpose of this event from official documantation.
It's commonly used developing controls with clint support (IScriptControl).
get_highlightCssClass: function() {
return this._highlightCssClass;
},
set_highlightCssClass: function(value) {
if (this._highlightCssClass !== value) {
this._highlightCssClass = value;
this.raisePropertyChanged('highlightCssClass');
}
},
Is it used to update the server's-side property from the clint side?
How do I catch this event on server side and get the updated property value?