I've got a datepicker with an onSelect event handler. Later in my program, I want to add other onSelect handlers. Problem is, they wipe out the first one. (Fiddle.)

How can I add additional handlers without doing that?

link|improve this question

66% accept rate
1  
Seems this has been asked before: stackoverflow.com/q/2241725/1030169 – jmoerdyk Jan 27 at 17:08
I thought it would be, but didn't find it, thanks. – sprugman Jan 27 at 17:16
feedback

1 Answer

You could maintain your desired calls in an array;

var firstHandler = function(dateText, inst) {
    console.log('Original Handler', dateText, inst);
};

var secondHandler = function(dateText, inst) {
    console.log('Second Handler', dateText, inst);
};

$('#datepicker').datepicker({
    onSelect: function() {
        var sinks = $(this).data("mySelects");
        for (var i = 0; i < sinks.length; i++)
            sinks[i].apply(this, arguments);
    }
}).data("mySelects", [firstHandler]);

$('#addBtn').click(function(event) {
    $('#datepicker').data('mySelects').push(secondHandler);
    $('#datepicker').data('mySelects').push(nthHandler);
});
link|improve this answer
Thanks. I had just finished coding that when I saw the comment above. I think the linked solution is a little more elegant. Update: actually, your version is more elegant than mine. Hmm... – sprugman Jan 27 at 17:48
This solution works fine in several situations (instead the linked solution doesn't work if, in the first handler, there is a variable that comes from out the context of the first handler ). Where can i find documentation that explains me the solution? I cannot understand, for example, arguments variable. – Giovanni Chetelodicoafare Mar 7 at 3:40
.apply(this,arguments) calls the function in sinks[] making sure that this is correct in the handler. It also passes the arguments object to pass on all the arguments that onSelect originally received (dateText & inst). developer.mozilla.org/en/JavaScript/Reference/…` – Alex K. Mar 7 at 10:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.