[Solved] f:view and rich:page: inside or outside?

The <f:view> runs as being a taghandler during view build time, setting the specified attributes as properties of the current UIViewRoot and/or the HttpServletResponse instance. So, if some taghandler (not UI component!) is encountered before the <f:view> and relies on one of those attributes, then it will miss hit. However, <rich:page> is an UI component … Read more

[Solved] Implementing jquery in rich fcaes 4 on jsf< h:datatable

Ok, here is how it should work: <script type=”text/javascript” > $.noConflict(); jQuery(document).ready(function() { jQuery(‘#example’).dataTable( { “sScrollY”: 200, “sScrollX”: “100%”, “sScrollXInner”: “110%” } ); } ); </script> Of course you need to include jQuery files, example: <script type=”text/javascript” src=”http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js”></script> 2 solved Implementing jquery in rich fcaes 4 on jsf< h:datatable