I am trying to override one function by replacing it with a different version. The function which I am trying to override is defined in a web resource of a control. But, I have tried the same for script resources, it works.

function HookCalendarFunction() {
    try {
        var Original_performLayout = _performLayout;
        _performLayout = function () {
            performLayout();
        };
        var Original_cell_onclick = _cell_onclick;
        _cell_onclick = function (val) {
            cellClick(val);
        };
    }
    catch (e) {

    }

}

Here, _performLayout is a function for a custom control in ASP.net. _performLayout is in web resources of the control.

Thanks Ashwani

link|improve this question

Is there a question here? – rcravens Mar 11 '11 at 14:44
5  
You've been a member for a year and nine months and asked 53 previous questions. You really, really should be able to format code by now. To the right when you were asking this or any of your 53 previous questions there was this handy How to Format box. Worth a read, as is the page linked from the [?] just above the question area. – T.J. Crowder Mar 11 '11 at 14:46
And the question is? – Lloyd Mar 11 '11 at 14:46
Sorry for the formatting :(. While calling this function, exception is thrown saying "_performLayout is not found". The same method works if I try to override a method in script resources in asp.net. – Ashwani K Mar 11 '11 at 14:49
feedback

2 Answers

Check _performLayout is global and your that declaration happens after the original declaration.

link|improve this answer
feedback
up vote 0 down vote accepted

I solved the issue, the issue was with the scope of function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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