What I want to have is a custom object which provides some events. For example:
var CustomObjectTextChangedEventName = 'textChanged';
var CustomObject = function () {
var _this = this;
var _text = "";
_this.OnTextChanged = document.createEvent("Event");
_this.OnTextChanged.initEvent(CustomObjectTextChangedEventName, true, false);
_this.ChangeText = function (newText) {
_text = newText;
fireTextChanged();
};
function fireTextChanged() {
_this.dispatchEvent(_this.OnTextChanged);
}
}
The code to use the event would look like:
myCustomObject = new CustomObject();
myCustomObject.addEventListener(CustomObjectTextChangedEventName, handleTextChanged, false);
As you can see... the default way of using events in JS. But I can not make it worling...
Currently my problem is that my object does not implement "addEventListener" and "dispatchEvent". But this functions are normaly implemented from "element"...
Can I make them available somehow or do I have to implement them for my own? How I have to implement them? Do I have to implement my own eventhandling? (having a internal list of handlers, an "add"- and "remove"-handler function, and fire each handler when I want to fire the event)
Greetings!
object.trigger(event_name)– Deeptechtons Jun 11 '12 at 11:37