Getting Started with PrimeUI is a straightforward process.
PrimeUI is distributed in a zip file that is available at download page. Once you download the file and extract it in filesystem, you'd see two folders named development and production. Development folder has the uncompressed and the Production folder has the compressed distribution.
Although you can include resources of each widget individually, it is suggested to use the prime-ui.js and prime-ui.css file to register all the widgets at once. As PrimeUI is jQuery UI based, you also need to include jQuery and jQuery UI. In addition, PrimeUI uses FontAwesome for the icons.<
<head> <link rel="stylesheet" href="%PATH%/theme.css" /> <link rel="stylesheet" href="%PATH%/jquery-ui.css" /> &şt;link rel="stylesheet" type="text/css" href="resources/css/fa/font-awesome.css" /> <link rel="stylesheet" href="%PATH%/prime-ui-min.css" /> <script type="text/javascript" src="%PATH%/jquery.js"></script> <script type="text/javascript" src="%PATH%/jquery-ui.js"></script> <script type="text/javascript" src="%PATH%/prime-ui.js"></script> </head>