[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

[Solved] Oracle ADF: 12c Unresponsive Script (core-ABRAMS-3160.js)

I get the answer. Thanks to Kyle.Thomas who posts his answer on https://community.oracle.com/thread/3527282?start=0&tstart=0 It only appears to be an issue when I have the: <af:panelTabbed id=”pt1″> within <af:panelGridLayout id=”pgl1″> <af:gridRow marginTop=”5px” height=”auto” id=”gr1″> <af:gridCell marginStart=”5px” width=”auto” id=”gc1″> solved Oracle ADF: 12c Unresponsive Script (core-ABRAMS-3160.js)

[Solved] Create a PDF file in memory

this solution, using itext, primefaces media. <p:dataTable widgetVar=”tb1″ id=”tablaFact” var=”item” selection=”#{listadoFacturasMB.selectedFactura}” selectionMode=”single” paginator=”true” rows=”20″ rowKey=”#{item.idFactura}” value=”#{listadoFacturasMB.facturaUtilList}”> <p:ajax event=”rowSelect” update=”:frm1:growl :frm1:dialog” oncomplete=”PF(‘servDialog’).show()” listener=”#{listadoFacturasMB.createPDF}”/> <f:facet name=”header”> <h:outputText value=”Listado de facturas (Cantidad: #{listadoFacturasMB.cantFact})”/> </f:facet> <p:column style=”width:10%” headerText=”Nro” sortBy=”noFactura” filterFunction=”#{utilMB.filterByName}” filterBy=”noFactura” filterMatchMode=”contains”> <h:outputText value=”#{item.noFactura}”/> </p:column> </p:dataTable> <p:dialog resizable=”false” closeOnEscape=”true” appendTo=”@(body)” modal=”true” id=”dialog” header=”Detalles de la factura” widgetVar=”servDialog” width=”1000px” height=”630px”> … Read more