COGNOS with JQUERY
October 13, 2010 1 Comment
While working on creating custom navigation in COGNOS, we tried to use Jquery to do the client side rendering of the menu, but Jquery just wont work with COGNOS Javascript.
This was because javascript was conflicting with COGNOS js scripts and below is a quick fix.
Put the below code in your HTML code.
var $x = jQuery.noConflict();
$x(document).ready(function () {
//$x(“”);
});
All your jquery manipulation needs to use “$x” as prefix.
Hope this helps!
Excellent Cognos and jQuery tutorial:
http://jquerycognosintegration.blogspot.com/