I have included JQuery1.5 in the header of a JSF page. In that page there is a bunch of Primefaces components already coded. After I have included the Jquery.js in the header of the page, some primefaces components like <p:commandButton> loses their skin and <p:fileUpload> becomes looking like normal JSP <input type="file"> and loosing its AJAX capability entirely.

Is there a way to use JQuery safely along with primefaces(without conflict)?

link|improve this question

feedback

5 Answers

up vote 18 down vote accepted

I had the same problem as described in the question. That's why I came up with the following solution:

Include the primefaces built-in jQuery library (currently 1.4.1) as including an own jQuery library leads to CSS formatting problems. Adding the head attribute allows to specify the tag everywhere - e.g. when using templating you not always have access to the <head> tag:

<h:outputScript library="primefaces" name="jquery/jquery.js" target="head" />

The primefaces jQuery library is included by default in conflict mode. That means the $() cannot by used. To overcome this issue include the following line your <script> or <h:outputScript> tag:

<h:outputScript target="head">
    // Add the $() function
    $ = jQuery;
    // Now you can use it
    $(document).ready(function() {
        ...
    });
</h:outputScript>

That's the best solution I could dig out so far, using primefaces 2.2.1.

link|improve this answer
Thanks very much :) – selvin Apr 1 '11 at 10:15
feedback

Why not use the jquery bundles with PrimeFaces?

<h:outputScript library="primefaces" name="jquery/jquery.js" />

PrimeFaces 2.2.1 has jQuery 1.4.4 and 3.0(in development) has 1.5.1.

link|improve this answer
4  
Jesus! I have got the answer from the BOSS himself. :) Thanks @Cagatay – selvin Mar 28 '11 at 10:08
2  
As a side note, 2.2.1's jquery has noconflict enabled by default and 3.0's doesn't have noconflict on. – Cagatay Civici Mar 28 '11 at 11:09
1  
outputStylesheet -> outputScript – edze Mar 30 '11 at 19:15
If I want to do jQuery UI, is there any other outputScript I need to include beside this <h:outputScript library="primefaces" name="jquery/ui/jquery-ui.js" target="head"/>. This question is directly related to this post, if you have sometimes, will u please take a look at it stackoverflow.com/questions/5860870/… – Thang Pham May 2 '11 at 18:47
feedback
  • write jQuery.noConflict(); before jquery intialization like below..

jQuery.noConflict();
$(document).ready(function(){ // your code });

or

  • change all $ to jQuery in jquery function

You can also use the following code snippets to still use $() in your code, but with one drawback, you will not have access to your other library’s $() method.

// Method 1
jQuery(document).ready(function($){
    $("div").hide();
});

// Method 2
(function($) {
    /* some code that uses $ */ 
})(jQuery);
link|improve this answer
1  
Reference – diEcho Mar 28 '11 at 10:02
feedback

jQuery has a 'noConflict' mode which allows it to play nicely side by side with other libraries. I haven't used Primefaces components, so I don't know for sure, but if you include jQuery in noconflict mode, your problems will likely go away.

link|improve this answer
feedback

My experience:

I had the same problem and never got it working with both jquery libs. (I use jQuery instead of $ but never tried jQuery.noConflict()).

My solution was to use only the lib bundled with primefaces as described in Cagatays answer.

link|improve this answer
The same holds for me. I can only use the primefaces built-in jQuery; when using my own jQuery lib the CSS styles will be corrupted. That means I can use only the jQuery() function instead of $(). – Lars Blumberg Apr 1 '11 at 7:01
feedback

Your Answer

 
or
required, but never shown

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