ZF-5726: ZendX_Jquery_View page specifies incorrect class for enableNoConflictMode method.
Description
In the ZendX_Jquery_View page (http://framework.zend.com/manual/en/…) it is stated that the noconflict function can be accessed as:
ZendX_JQuery_View_JQuery::enableNoConflictMode();
However, enableNoConflictMode is not a static method of ZendX_JQuery_View_JQuery thus it cannot be accessed as such. Instead it is part of ZendX_JQuery_View_Helper_JQuery and can therefore be accessed instead by:
ZendX_JQuery_View_Helper_JQuery::enableNoConflictMode();
(This caused a lot of time trying to find the problem.)
Comments
Posted by Benjamin Eberlei (beberlei) on 2009-02-12T10:24:35.000+0000
Duplicate of ZF-5589, i just did not merge it back into 1.7 branch, which is my mistake. Will be in the next manual.