javascript - How to include jqplot dateAxisRenderer.min.js file in your xhtml page -
i include jqplot.dateaxisrenderer.min.js file in xhtml page. how do ?
pf version : 6.0.0
added dependency using pom:
<dependency> <groupid>org.wicketstuff</groupid> <artifactid>jqplot</artifactid> <version>7.6.0</version> </dependency>
how add in xhtml file?
following xhtml file code:
<?xml version="1.0" encoding="utf-8"?> <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:p="http://primefaces.org/ui" xmlns:pe="http://primefaces.org/ui/extensions"> <ui:composition template="/pages/layout.xhtml"> <ui:define name="pagetitle"> <h:outputtext value="page 3" /> </ui:define> <ui:define name="centercontent"> <div class="contentdetailheadline parbase"> <h1>page 1</h1> </div> <div class="bodycopy parbase"> <div style="clear: both"></div> <div class="content-body"> <p> welcome page !!! </p> </div> <div style="clear: both"></div> </div> </ui:define> </ui:composition> </html>
Comments
Post a Comment